001、
root@PC1:/home/test/test# ls a.txt root@PC1:/home/test/test# cat a.txt ## 测试数据 a b c d b d k 8 m 9 k d 0 r k b f f b 8 b 9 k d root@PC1:/home/test/test# awk '{for(i = 1; i <= NF; i++){if($i == "b"){printf("%d\t", i)}} {printf("\n")}}' a.txt ## 返回行中字符b的所有列索引 2 5 4 1 3
标签:字符,PC1,索引,linux,test,home,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/16592484.html