Bootstrap

统计重复行出现的次数(重复行消去)shell 原创

awk '{a[$1]++}END{for(i in a){print i,a[i] | "sort -r -k 2"}}' testfile

统计testfile中重复行的次数








;