标签:shell统计重复次数
(1)
awk -F, ‘{a[$2]++}END{for (i in a) print i" "a[i]}‘ 文件名.txt
(2)
cat 文件名.txt |cut -d, -f2 |sort |uniq -c |sort -n
shell统计重复次数
原文地址:http://6226001001.blog.51cto.com/9243584/1639410