绿色资源网:您身边最放心的安全下载站! 最新软件|热门排行|软件分类|软件专题|论坛转帖|厂商大全

绿色资源网

技术教程
您的位置:首页操作系统linux → Linux查看所有子文件夹及文件的数量

Linux查看所有子文件夹及文件的数量

我要评论 2012/09/26 11:31:56 来源:绿色资源网 编辑:www.downcc.com [ ] 评论:0 点击:249次

find命令查看(推荐):

所有子目录的数量:

[root@localhost ~]# find xkermulu -type d | wc -l
125
[root@localhost ~]# find xkermulu/ -type d | wc -l
125
[root@localhost ~]# find xkermulu/* -type d | wc -l


124 --正确
结果不同的原因:
[root@localhost ~]# find xkermulu -type d | more
xkermulu --输出结果首行
[root@localhost ~]# find xkermulu/* -type d | more
xkermulu/examples --输出结果首行

总结:使用xkermulu/*不包含xkermulu这个父目录,只输出其下的子目录。

所有文件的数量:

[root@localhost ~]# find xkermulu -type f | wc -l
987
[root@localhost ~]# find xkermulu/ -type f | wc -l
987
[root@localhost ~]# find xkermulu/* -type f | wc -l
987

tree命令查看(不推荐):

[root@localhost ~]# tree xkermulu
……
124 directories, 984 files
-----------------------------------------
[root@localhost ~]# tree xkermulu/
……
124 directories, 984 files

du命令查看:

[root@localhost ~]# du -ah xkermulu/* | wc -l
1111

总结:du查看的结果为1111,子目录的数量为124,文件数量为:1111-124=987,所以tree命令查看的结果应该是不准确,至于少计算了哪个文件,没再查这个问题,推荐使用find命令查看。

关键词:Linux

阅读本文后您有什么感想? 已有 人给出评价!

  • 0 欢迎喜欢
  • 0 白痴
  • 0 拜托
  • 0 哇
  • 0 加油
  • 0 鄙视