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.

28 lines
1.1 KiB

This file contains ambiguous Unicode 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同时也给出所指定文件的总统计数
## 选项
```markdown
以下选项可用于选择打印的计数,始终按以下顺序排列:换行符,单词,字符,字节,最大行长度
-c, --bytes 打印统计的字节数
-m, --chars 打印统计的字符数
-l, --lines 打印行数
--files0-from=文件 从指定文件读取以NUL 终止的名称,如果该文件被指定为"-"则从标准输入读文件名
-L, --max-line-length 显示最长行的长度
-w, --words 显示单词计数
```
## 实例
```bash
wc -l * # 统计当前目录下的所有文件行数
find . * | xargs wc -l # 当前目录以及子目录的所有文件行数
wc test.txt # 查看文件的字节数、字数、行数
```