Shell中求字符串中单词的个数的几种方法
方法一:
[linux@host ~]# echo 'one two three four five' | wc -w5
方法二:
[linux@host ~]# echo 'one two three four five' | awk '{print NF}'5
方法三:
[linux@host ~]# s='one two three four five'[linux@host ~]# set ${s}[linux@host ~]# echo $#5
方法四:
[linux@host ~]# s='one two three four five'[linux@host ~]# a=($s)[linux@host ~]# echo ${#a[@]}
方法五:
[linux@host ~]# s='one two three four five'[linux@host ~]# echo $s | tr ' ' '\n' | wc -l 命令详细介绍请查看“Linux命令大全”。
温馨提示:答案为网友推荐,仅供参考