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

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命令查看。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值