每天一个Linux命令(37):wc

    xiaoxiao2021-04-04  44

    wc(Word Count)的功能是统计指定文件中的字节数、字数、行数,并将统计结果输出。

    1. 命令格式

    wc [选项] 文件

    2. 命令功能

    统计指定文件中的字节数、字数、行数,并将统计结果显示输出。该命令统计指定文件中的字节数、字数、行数。如果没有给出文件名,则从标准输入读取。wc同时也给出所指定文件的总统计数。

    3. 命令参数

    -c,统计字节数。

    -l,统计行数。

    -m,统计字符数,不能与-c参数一起使用。

    -w,统计字数,一个字被定义为由空白、跳格或换行字符分隔的字符串。

    -L,打印最长行的长度。

    –help,显示帮助信息。

    –version,显示版本信息。

    4. 使用实例

    例一:查看文件的字节数、字数、行数

    命令:wc test.txt

    # cat test.txt hnlinux peida.cnblogs.com ubuntu ubuntu linux redhat Redhat linuxmint # wc test.txt 7 8 70 test.txt # wc -l test.txt 7 test.txt # wc -c test.txt 70 test.txt # wc -w test.txt 8 test.txt # wc -m test.txt 70 test.txt # wc -L test.txt 17 test.txt

    例二:只打印统计数字,不打印文件名

    # wc -l test.txt 7 test.txt # cat test.txt |wc -l 7

    说明:使用管道线,这在编写shell脚本时特别有用。

    例三:统计当前目录下的文件数

    命令:ls -l | wc -l

    # ll 总计 604 ---xr--r-- 1 root mail 302108 11-30 08:39 linklog.log ---xr--r-- 1 mail users 302108 11-30 08:39 log2012.log -rw-r--r-- 1 mail users 61 11-30 08:39 log2013.log -rw-r--r-- 1 root mail 0 11-30 08:39 log2014.log -rw-r--r-- 1 root mail 0 11-30 08:39 log2015.log -rw-r--r-- 1 root mail 0 11-30 08:39 log2016.log -rw-r--r-- 1 root mail 0 11-30 08:39 log2017.log # ls -l | wc -l 8

    说明:数量中包含当前目录

    转载请注明原文地址: https://ju.6miu.com/read-666110.html

    最新回复(0)