001、
[root@PC1 test3]# ls a.txt b.txt [root@PC1 test3]# cat a.txt ## 测试数据 3 a 5 b b 4 7 [root@PC1 test3]# cat b.txt ## 测试数据 3 a 5 b 4 7 [root@PC1 test3]# awk '{if($0 == a) {print NR, "consistent"; exit}; a=$0}' a.txt ## 判断是否有连续的重复 5 consistent [root@PC1 test3]# awk '{if($0 == a) {print NR, "consistent"; exit}; a=$0}' b.txt
标签:test3,重复,consistent,PC1,##,一列,linux,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/17457501.html