linux 中awk命令实现统计频数
作者:互联网
linux 中awk命令实现统计频数
1、
root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt 3 4 6 3 2 4 8 2 1 5 6 2 4 3 6 1 2 4 7 3 3 4 7 2 root@PC1:/home/test# awk '{s[$3]++} END {for (i in s) print i, s[i]}' a.txt ## 第3列 8 1 6 3 7 2 root@PC1:/home/test# awk '{s[$4]++} END {for (i in s) print i, s[i]}' a.txt ##第4列 3 2 2 3 1 1 root@PC1:/home/test# awk '{s[$1]++} END {for (i in s) print i, s[i]}' a.txt 3 2 2 2 1 1 4 1 root@PC1:/home/test# awk '{s[$2]++} END {for (i in s) print i, s[i]}' a.txt 3 1 5 1 4 4
标签:频数,PC1,awk,linux,test,home,txt,root 来源: https://www.cnblogs.com/liujiaxin2018/p/15806330.html