Linux Shell sort 指定排序第几列

时间:2014-07-17 13:32:35   收藏:0   阅读:12747

ip.txt 里存储着ip信息 统计排序后取前10条

awk ‘{cnt[$1]++} END{for (ip in cnt) print ip":"cnt[ip]}‘ ip.txt | sort -k 2 -rn -t":" | head -n 10

awk ‘{cnt[$1]++} END{for (ip in cnt) print cnt[ip],ip}‘ ip.txt | sort -rn | head -n 10

sort -k  根据第几列排序  -n 按数字排序  -r 倒序 -t 分隔符

Linux Shell sort 指定排序第几列,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!