Linux shell 脚本攻略学习笔记八
原创
©著作权归作者所有:来自51CTO博客作者说文科技的原创作品,请联系作者获取转载授权,否则将追究法律责任
Linux shell 脚本攻略学习笔记八之wc命令
1.wc 命令
wc - print newline, word, and byte counts for each file [打印每个文件的换行,单词,字节数。]
-l, --lines
print the newline counts
-w, --words
print the word counts
2.示例如下
[root@server4 shells]# echo -e "hello spark \nwo men dou shi hao hai zi \n"
hello spark
wo men dou shi hao hai zi
[root@server4 shells]# echo -e "hello spark \nwo men dou shi hao hai zi \n" | wc -w
9
[root@server4 shells]# man wc
[root@server4 shells]# echo -e "hello spark \nwo men dou shi hao hai zi \n" | wc -l
3