You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.7 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

wc
===
统计文件的字节数、字数、行数
## 补充说明
**wc命令** 统计指定文件中的字节数、字数、行数并将统计结果显示输出。利用wc指令我们可以计算文件的Byte数、字数或是列数若不指定文件名称或是所给予的文件名为“-”则wc指令会从标准输入设备读取数据。wc同时也给出所指定文件的总统计数。
### 语法
```
wc(选项)(参数)
```
### 选项
```bash
-c # 统计字节数,或--bytes或——chars只显示Bytes数
-l # 统计行数或——lines只显示列数
-m # 统计字符数。这个标志不能与 -c 标志一起使用。
-w # 统计字数或——words只显示字数。一个字被定义为由空白、跳格或换行字符分隔的字符串。
-L # 打印最长行的长度。
-help # 显示帮助信息
--version # 显示版本信息
```
### 参数
文件:需要统计的文件列表。
## 例子
```bash
wc -l * # 统计当前目录下的所有文件行数
wc -l *.js   # 统计当前目录下的所有 .js 后缀的文件行数
find . * | xargs wc -l # 当前目录以及子目录的所有文件行数
wc test.txt # 查看文件的字节数、字数、行数
```
查看文件的字节数、字数、行数
```bash
wc test.txt
# 输出结果
7 8 70 test.txt
行数 单词数 字节数 文件名
```
用wc命令怎么做到只打印统计数字不打印文件名
```bash
wc -l test.txt
# 输出结果
7 test.txt
```
用来统计当前目录下的文件数
```bash
ls -l | wc -l
# 输出结果
8
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->