001、
[root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt 3 5 3 aa 3 3 4 3 3 aa 8 8 8 [root@pc1 test1]# awk '{a=($0 ~ "aa"); print a}' a.txt ## 匹配成功,输出1,否则, 输出0 0 1 0 1 0
标签:test1,aa,pc1,awk,linux,字符串,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/16944104.html