awk 打印列数

node2:/root#cat aa
11|22|33|rr
node2:/root#awk -F '|' '{a+=NF}END{print a}' aa 
4

 

你可能感兴趣的:(Shell编程)