访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux的 wc 命令详解

时间:2019-08-16

linux简单命令大全_linux命令大全_linux命令大全

#wc --help

用法:wc [选项]... [文件]...

或:wc [选项]... --files0-from=F

输出每个指定文件的行数、单词计数和字节数,如果指定了

多于一个文件,继续给出所有相关数据的总计。如果没有指定

文件,或者文件为"-"linux命令大全,则从标准输入读取数据。

-c, --bytes 输出字节数统计

-m, --chars 输出字符数统计

-l, --lines 输出行数统计

--files0-from=文件 从指定文件读取以NUL 终止的名称,如果该文件被

指定为"-"则从标准输入读文件名

-L, --max-line-length 显示最长行的长度

-w, --words 显示单词计数

linux命令大全_linux命令大全_linux简单命令大全

--help 显示此帮助信息并退出

--version 显示版本信息并退出

请向bug-coreutils@gnu.org 报告wc 的错误

GNU coreutils 项目主页:<;

GNU 软件一般性帮助:<;

请向<; 报告wc 的翻译错误

要获取完整文档,请运行:info coreutils 'wc invocation'

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

[root@localhosttest]#cattest.txt

hnlinux

peida.cnblogs.com

ubuntu

ubuntulinux

linux简单命令大全_linux命令大全_linux命令大全

redhat

Redhat

linuxmint

[root@localhosttest]#wctest.txt

7870test.txt

[root@localhosttest]#wc-ltest.txt

7test.txt

[root@localhosttest]#wc-ctest.txt

70test.txt

[root@localhosttest]#wc-wtest.txt

8test.txt

[root@localhosttest]#wc-mtest.txt

70test.txt

linux简单命令大全_linux命令大全_linux命令大全

[root@localhosttest]#wc-Ltest.txt

17test.txt

说明:

7870test.txt

行数单词数字节数文件名

实例2:用wc命令怎么做到只打印统计数字不打印文件名

[root@localhosttest]#wc-ltest.txt

7test.txt

[root@localhosttest]#cattest.txt|wc-l

7[root@localhosttest]#

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

实例3:用来统计当前目录下的文件数

[root@localhosttest]#cdtest6

linux命令大全_linux命令大全_linux简单命令大全

[root@localhosttest6]#ll

总计604

---xr--r--1rootmail30210811-3008:39linklog.log

---xr--r--1mailusers30210811-3008:39log2012.log

-rw-r--r--1mailusers6111-3008:39log2013.log

-rw-r--r--1rootmail011-3008:39log2014.log

-rw-r--r--1rootmail011-3008:39log2015.log

-rw-r--r--1rootmail011-3008:39log2016.log

-rw-r--r--1rootmail011-3008:39log2017.log

[root@localhosttest6]#ls-l|wc-l

8

[root@localhosttest6]#

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

实例部分,转自:

 上一个教程:Linux中ps命令详解