shell+awk获取一文件第三列数据并去重

awk '{ print $3 }'  ws.log > temp.log

 sort -n temp.log | uniq

你可能感兴趣的:(shell+awk获取一文件第三列数据并去重)