1、测试数据
[root@centos79 test]# cat a.txt e r w i s g n c w d h x
2、awk
[root@centos79 test]# cat a.txt e r w i s g n c w d h x [root@centos79 test]# awk '{print NF}' a.txt 4 4 4 [root@centos79 test]# awk 'END{print NF}' a.txt 4
3、grep + wc -l
[root@centos79 test]# cat a.txt e r w i s g n c w d h x [root@centos79 test]# head -n 1 a.txt | grep -o " " | sed "1i xx" | wc -l 4
4、tr + wc -l
[root@centos79 test]# cat a.txt e r w i s g n c w d h x [root@centos79 test]# head -n 1 a.txt | tr " " "\n" | wc -l 4