格式命令如下:
wc [选项] 文件名
选项:
用这个命令统计一下 /etc/passwd
文件中到底有多少行、多外单词、多少个字符,命令如下:
wc /etc/passwd
29 46 1402 /etc/passwd
用 wc 命令统计服务器上有多少个正常连接:
netstat -an | grep ESTABLISHED | wc -l
48
参考:
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:Linux wc命令:统计指定文件中的字节数、字数、行数