001、
(base) root@PC1:/home/test4# ls a.txt (base) root@PC1:/home/test4# cat a.txt ## 测试数据 ##1 ##2 ##3 4 i 6 y #kk mm a 9 7 6 (base) root@PC1:/home/test4# awk '{if($0 ~ /#/) {next}; print $0}' a.txt ## 当匹配#时,跳出该轮外层循环,打印当前行 4 i 6 y a 9 7 6 (base) root@PC1:/home/test4# awk '{if($0 ~ /#/) {next}; print $2}' a.txt i y 9 6
标签:外层,test4,##,PC1,awk,linux,home,txt From: https://www.cnblogs.com/liujiaxin2018/p/16596290.html