The Linux wc command calculates a file's word, line, character, or byte count. Far from just being a utility for word processing, wc is a useful tool for a variety of system tasks.

[ Get the Linux commands cheat sheet. ]

For basic usage, all you need is a file with some text in it. Here's my plan for a zombie apocalypse:

$ wc zombie-apocalypse_plan-A.txt
188  581 3591 zombie-apocalypse_plan-A.txt

The default output of wc is the file's number of lines, words, and characters, followed by its path. (With only 188 lines of text in my plan, it's probably time to work on a Plan B.)

Here are three things you may not know you can do with the wc command.

1. Count items in a directory with wc

Many desktop file managers provide a running total of how many items are in a directory.

Screenshot of the Dolphin file manager

The terminal doesn't do that. At least, not by default.

The -1 (that's the number one, not a lower-case L) option for ls (list) forces the ls command to list files in a single column. Pipe that output to wc with its --lines option for a count of items:

$ ls -1 ~/Code/Angband-4.2.3 | wc --lines
25

There are a few caveats to keep in mind. I alias my ls command to include the --almost-all option, which omits the . and .. entries from directory listings. I also have ls set to ignore files ending in ~ or #, both of which are often used as extensions for backup files. Finally, by default, I don't view hidden files. That means that my report on the directory's contents isn't off by two (. and ..) but doesn't include any backup files or hidden files.

That's exactly the count I want, but keep those conditions in mind in case you want something different. The wc command parses the output of your ls command, so it believes you even when you "lie" to it.

2. Detect hidden characters with wc

I'm involved with some projects that use an XML toolchain, and sometimes users file bugs about a file that breaks the process for them. By the time the report gets to me, it's a verifiable mystery. People have run linters to look for errors or misconfigurations, other people have inspected the file, and nobody can determine the issue.

The --char option of wc shows something suspicious, though:

$ cat hidden.txt
ab
$ wc --char hidden.txt
5

Most files contain some nonvisible characters. For instance, wc sees newlines as valid countable characters. However, the character count of 5 hardly accounts for the single newline at the end of ab (the correct count is 3).

In practice, this is of limited use if you don't know where in a file to look for those hidden characters. After all, a report that a file has 758 characters isn't much good unless you manually count how many characters you can see. However, if your toolchain provides an error for where in a file the problem occurred, then it's trivial to copy and paste a section from the document into a wc command.

In short, using wc has been an easy diagnostic step for users and has saved me from having to explain Emacs' describe-char function to people who aren't used to the magic of GNU Emacs.

For the record, here's an example of the fix (the problem was a "soft hyphen" that wasn't visible in the users' text editors):

$ sed 's/\o302\xAD//' hidden.txt > fixed.txt
wc --char fixed.txt
3

3. Get the size of a file with wc

There are lots of ways to get the size of a file. There's du, of course, and ls (although ls -l requires some parsing). Add wc to the list.

$ wc --bytes ~/pixel.png
258   pixel.png
$ du --bytes ~/pixel.png
258   pixel.png

I haven't yet encountered a system that has wc and not du, but I have encountered implementations of du that don't provide the --bytes option. So far, the wc command has been consistent in its ability to count bytes (although in some implementations, there's only the -c short option).

$ du -h B ~/pixel.png
512B  pixel.png
$ wc -c ~/pixel.png
258   pixel.png

[ Get the guide to installing applications on Linux. ]

Count on wc

The wc command is a simple counter. It doesn't have any special features and it's not a particularly great demo of what's great about Linux. However, it's a reliable and predictable command that does one thing and does it well. Put it to good use.


关于作者

Seth Kenlon is a Linux geek, open source enthusiast, free culture advocate, and tabletop gamer. Between gigs in the film industry and the tech industry (not necessarily exclusive of one another), he likes to design games and hack on code (also not necessarily exclusive of one another).

UI_Icon-Red_Hat-Close-A-Black-RGB

按频道浏览

automation icon

自动化

有关技术、团队和环境 IT 自动化的最新信息

AI icon

人工智能

平台更新使客户可以在任何地方运行人工智能工作负载

open hybrid cloud icon

开放混合云

了解我们如何利用混合云构建更灵活的未来

security icon

安全防护

有关我们如何跨环境和技术减少风险的最新信息

edge icon

边缘计算

简化边缘运维的平台更新

Infrastructure icon

基础架构

全球领先企业 Linux 平台的最新动态

application development icon

应用领域

我们针对最严峻的应用挑战的解决方案

Virtualization icon

虚拟化

适用于您的本地或跨云工作负载的企业虚拟化的未来