每天一个linux命令(40):wc命令
Linux系统中的wc(Word Count)
命令的功能为统计指定文件中的字节数、字数、行数,并将统计结果显示输出。
1.命令格式
1
wc [选项]文件...
2.命令功能
统计指定文件中的字节数、字数、行数,并将统计结果显示输出。该命令统计指定文件中的字节数、字数、行数。如果没有给出文件名,则从标准输入读取。wc同时也给出所指定文件的总统计数。
3.命令参数
1
2
3
4
5
6
7
8
9
10
11
12
13
-c 统计字节数。
-l 统计行数。
-m 统计字符数。这个标志不能与 -c 标志一起使用。
-w 统计字数。一个字被定义为由空白、跳格或换行字符分隔的字符串。
-L 打印最长行的长度。
-help 显示帮助信息
--version 显示版本信息
4.使用实例
统计文件信息
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[root@localhost test]# cat test.txt
hnlinux
peida.cnblogs.com
ubuntu
ubuntu linux
redhat
Redhat
linuxmint
[root@localhost test]# wc test.txt
7 8 70 test.txt
[root@localhost test]# wc -l test.txt
7 test.txt
[root@localhost test]# wc -c test.txt
70 test.txt
[root@localhost test]# wc -w test.txt
8 test.txt
[root@localhost test]# wc -m test.txt
70 test.txt
[root@localhost test]# wc -L test.txt
17 test.txt
行数 | 单词数 | 字节数 | 文件名 |
---|---|---|---|
7 | 8 | 70 | test.txt |
不打印文件名
1
2
[root@localhost test]# cat test.txt |wc -l
7[root@localhost test]#
使用管道线,这在编写shell脚本时特别有用。
当前目录下的文件数
1
2
3
4
5
6
7
8
9
10
bobo@ubuntu:~/test$ ls -l
total 16
drwxrwxr-x 2 bobo bobo 4096 May 9 04:17 dtest
-rw-rw-r-- 1 bobo bobo 79 May 6 06:48 test3.txt
-rw-rw-r-- 1 bobo bobo 45 May 9 21:03 test4.txt
bobo@ubuntu:~/test$ ls -l | grep "^-" | wc -l
2
bobo@ubuntu:~/test$ ls -l | grep "^d" | wc -l
1
bobo@ubuntu:~/test$
ls -l
输出中第一行是目录占用磁盘空间大小,详见ls介绍。
查询文件时,过滤出以 -
开头的文件;
查询目录时,过滤出以 d
开头的文件;