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.
我正在尝试编写一个脚本来总结一堆文件夹。所以我有以下结构:
monitor/abc_123 1G monitor/abc_213 1G monitor/abc_111 2G monitor/bbc_123 2.5G
我需要的是发出一个命令(使用 du 我假设)来总结前缀为“abc_”的目录
我尝试了以下方法:
du -sh abc*
...但这只是给了我每个文件夹的摘要。在这个例子中,我需要脚本来生成所有三个目录的总大小。
提前致谢
怎么样
du -ch abc_* | tail -n 1
这应该产生一个总计。