至少有三种方法可以获取“文件和子目录中所有数据的总和”(以字节为单位),这些方法在Linux / Unix和Windows的Git Bash中都可以使用,按平均从最快到最慢的顺序列出如下。供您参考,它们是在相当深的文件系统(docroot
在Magento 2 Enterprise安装中,包含30,027个目录中的71,158个文件)。
1。
$ time find -type f -printf '%s\n' | awk '{ total += $1 }; END { print total" bytes" }'
748660546 bytes
real 0m0.221s
user 0m0.068s
sys 0m0.160s
2。
$ time echo `find -type f -print0 | xargs -0 stat --format=%s | awk '{total+=$1} END {print total}'` bytes
748660546 bytes
real 0m0.256s
user 0m0.164s
sys 0m0.196s
3。
$ time echo `find -type f -exec du -bc {} + | grep -P "\ttotal$" | cut -f1 | awk '{ total += $1 }; END { print total }'` bytes
748660546 bytes
real 0m0.553s
user 0m0.308s
sys 0m0.416s
这两个也可以使用,但是它们依赖于Windows的Git Bash上不存在的命令:
1。
$ time echo `find -type f -printf "%s + " | dc -e0 -f- -ep` bytes
748660546 bytes
real 0m0.233s
user 0m0.116s
sys 0m0.176s
2。
$ time echo `find -type f -printf '%s\n' | paste -sd+ | bc` bytes
748660546 bytes
real 0m0.242s
user 0m0.104s
sys 0m0.152s
如果只希望当前目录的总数,则添加-maxdepth 1
到中find
。
请注意,某些建议的解决方案不会返回准确的结果,因此我会坚持使用上述解决方案。
$ du -sbh
832M .
$ ls -lR | grep -v '^d' | awk '{total += $5} END {print "Total:", total}'
Total: 583772525
$ find . -type f | xargs stat --format=%s | awk '{s+=$1} END {print s}'
xargs: unmatched single quote; by default quotes are special to xargs unless you use the -0 option
4390471
$ ls -l| grep -v '^d'| awk '{total = total + $5} END {print "Total" , total}'
Total 968133
ls
实际上显示每个文件中的字节数,而不是磁盘空间量。这足以满足您的需求吗?