wc命令可以用来统计文件的行数 、单词数 、字符数,用法如下:
[[email protected] ~]$ wc 1.txt # 统计文件的行数、单词数、字符数 2 4 24 1.txt [[email protected] ~]$ wc -l 1.txt # 统计文件的行数 2 1.txt [[email protected] ~]$ wc -w 1.txt # 统计文件的单词数 4 1.txt [[email protected] ~]$ wc -m 1.txt # 统计文件的字符数 24 1.txt [[email protected] ~]$ wc -c 1.txt # 统计文件的字节数 24 1.txt [[email protected] ~]$ wc -L 1.txt # 统计文件中最长行的长度,也就是最长的那一行有多少个字符 11 1.txt [[email protected] ~]$ ls /etc | wc -l # 统计指定目录下的文件或目录个数 222
原文地址:https://www.cnblogs.com/pzk7788/p/10269985.html
时间: 2024-10-08 22:00:37