001、基本用法
[root@pc1 test4]# ls a.txt [root@pc1 test4]# cat a.txt a b c d b e a d e z b c a d e [root@pc1 test4]# awk '{print ay[$2]++}' a.txt 0 1 0 2 1 [root@pc1 test4]# awk '{print ++ay[$2]}' a.txt ## 记录指定列的元素重复的次数 1 2 1 3 2
标签:test4,pc1,awk,数组,linux,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/16858647.html