我用来du
获取文件大小
是否有任何选项可以显示每个文件夹内的文件和文件夹数量。
例子:
这里somefolder
有 5000 个文件和 10 个文件夹
~$ du -ah --max-depth=0 /home/ubuntu/somefolder
515G /home/ubuntu/somefolder [show number of files count also]
答案1
你可以使用find
命令
find . -type f | wc -l
我用来du
获取文件大小
是否有任何选项可以显示每个文件夹内的文件和文件夹数量。
例子:
这里somefolder
有 5000 个文件和 10 个文件夹
~$ du -ah --max-depth=0 /home/ubuntu/somefolder
515G /home/ubuntu/somefolder [show number of files count also]
你可以使用find
命令
find . -type f | wc -l