如何使用 wc 命令计算文件中的字符、单词和行数?
答案1
行:wc -l filename.txt
人物:wc -m filename.txt
字:wc -w filename.txt
答案2
如果指定了多个文件,Wc 命令会打印每个文件的换行符、字数、字节数以及总行数。
句法
wc [OPTION]... [FILE]...
wc [OPTION]... --files0-from=F
选项
-c:- print the byte counts
-m:- print the character counts
-l:- print the newline counts
-L:- print the length of the longest line
-W:- print the word counts
–help:- Print help
–version:- Display version information
您可以使用如下所示的 wc 命令来获取所需的信息。
使用 -m 选项获取字符数
wc -m test_file.txt
-w 选项打印字数
wc -w test_file.txt
-l 选项打印换行符数
wc -l test_file.txt
笔记:-wc 适用于“/n”行字符。它计算换行符而不是行数。如果没有换行符,计数将少一个。请参阅为什么 wc -l 告诉我这个非空文件有 0 行?
我希望我回答了你的问题。