文本内容统计
wc(word count) ‐c //显示字节数
[root@localhost ~]# wc -c /etc/passwd
2656 /etc/passwd
[root@localhost ~]#
‐l //显示行数
[root@localhost ~]# wc -l /etc/passwd
47 /etc/passwd
[root@localhost ~]#
‐w //显示单词数
[root@localhost ~]# wc -w /etc/passwd
115 /etc/passwd
[root@localhost ~]#
//大小统计
du //查看文件或目录占用的磁盘空间大小
‐h //以人类友好的方式显示大小
‐s //显示总的占用空间大小
[root@localhost ~]# du -sh /etc/passwd
4.0K /etc/passwd
[
文本内容统计最先出现在Python成神之路。
共有 0 条评论