001、
[root@pc1 test2]# ls a.txt [root@pc1 test2]# cat a.txt ## 测试数据 a b b a b c f f b a [root@pc1 test2]# awk '{ay[$0]++; print ay[$0], $0}' a.txt ## 按照列标记重复次数 1 a 1 b 2 b 2 a 3 b 1 c 1 f 2 f 4 b 3 a
。
标签:test2,标记,pc1,ay,linux,txt,文本,root From: https://www.cnblogs.com/liujiaxin2018/p/17762075.html