wc
今天我们要讲的wc
不是water closet,而是linux/unix
里面的wc
,也就是word count.
wc
是一个统计工具
$ whatis wc
wc (1) - print newline, word, and byte counts for each file
它的常见用法如下
$ cat test.cpp | wc -c
1143 # test.cpp 的文件大小为 1143 bytes
$ cat test.cpp | wc -l
73 # test.cpp 文件内一共有73行
$ ls -1 | wc -l
63 # 当前目录下有63个文件/文件夹. 注意使用 ls -1 (数字1), 这样就ls的每一项输出就会占据一行了
$ ls -1 | grep '^m' | wc -l
2 # 该目录下, 名字以'm'开头的文件/文件夹一共有2个
参考文献
本文地址:https://jjayyyyyyy.github.io/2017/06/03/wc.html
(END)