Linux命令——wc
阿新 • • 發佈:2017-07-06
linux命令 wc
~]# wc -l /etc/fstab
wc(word count)命令的功能為統計指定文件中的字節數、字數、行數, 並將統計結果顯示輸出顯示!!
用法:wc [OPTION]... [FILE]...
-c 統計字節數。
-l 統計行數。
-w 統計字數
-m 統計字符數
-L 選項,統計文件中最長的行的長度。
例:
[[email protected] ~]# wc /etc/fstab
15 78 779 /etc/fstab
[[email protected] ~]# wc -c /etc/fstab
779 /etc/fstab
[[email protected]
15 /etc/fstab
[[email protected] ~]# wc -w /etc/fstab
78 /etc/fstab
[[email protected] ~]# wc -m /etc/fstab
779 /etc/fstab
[[email protected] ~]# wc -L /etc/fstab
93 /etc/fstab
本文出自 “10858195” 博客,請務必保留此出處http://10868195.blog.51cto.com/10858195/1945058
Linux命令——wc