码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Shell sort 指定排序第几列

时间:2014-07-17 13:32:35      阅读:12747      评论:0      收藏:0      [点我收藏+]

标签:for   linux   c   信息   shell   存储   

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

Linux Shell sort 指定排序第几列

标签:for   linux   c   信息   shell   存储   

原文地址:http://www.cnblogs.com/jachin/p/3850704.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!