[root@localhost /]# cd /etc
查看 当前目录大小
[root@localhost etc]# du -sh
92M     .
[root@localhost etc]# du . -sh /etc
92M     .
92M     /etc
查看当前目录的文件数量
[root@localhost etc]# find . -type f |wc -l
1256
查看指定目录的文件的数量
[root@localhost etc]# find /etc -type f |wc -l
1256
查看当前目录里子目录的数量
[root@localhost etc]# find . -type d |wc -l
204
[root@localhost etc]# find /etc -type d |wc -l
204
[root@localhost etc]# 

相关文章:

  • 2021-06-01
  • 2021-11-23
  • 2021-06-29
  • 2021-10-04
  • 2021-09-14
  • 2022-01-03
  • 2021-08-08
  • 2022-12-23
猜你喜欢
  • 2022-01-08
  • 2022-01-09
  • 2022-02-11
  • 2021-06-28
  • 2022-12-23
相关资源
相似解决方案