Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获取 Linux 中目录的大小,但它有很多子目录,并且似乎要花很长时间才能遍历所有这些文件和目录,然后才能给我一个大小的答案。我已经搜索了帮助和手册条目以及在线,但找不到任何东西。它真的必须在扫描时输出每个目录吗?有没有办法加快这个过程?通常使用其他命令,您可以使用“-q”安静模式开关。
使用选项-s(总结):
-s
du -sh folder
(-h用于使输出可读,意味着将字节数转换为 KB、MB、GB ..)
-h