计算一组文件的大小

发布于 2024-12-26 02:27:21 字数 221 浏览 0 评论 0原文

使用命令行工具 (Mac OSX),如何计算特定目录(例如 ~/Pictures/)中所有 jpg 文件的大小?

我知道如何列出这些 jpg 文件,但不知道如何计算它们的总大小。

$ cd ~/Pictures/
$ find . -name '*.jpg'
# Help?

谢谢。

Using a command-line tool (Mac OSX), how do I calculate the size of all jpg files in a particular directory e.g. ~/Pictures/?

I know how to list those jpg files but have no clue how to count their combined size.

$ cd ~/Pictures/
$ find . -name '*.jpg'
# Help?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

小镇女孩 2025-01-02 02:27:21

使用 xargs 通过 du 运行文件,如下所示:

find . -name "*html" -print0 | xargs -0  du -shc

或者,在 bash 中打开 globstar,它允许您使用 **/ 来匹配目录和子目录:(

shopt -s globstar
du -shc **/*.jpg

请注意,du 上的 -c 选项会生成总计。)

Run the files through du using xargs, like this:

find . -name "*html" -print0 | xargs -0  du -shc

Alternatively, turn on globstar in bash which allows you to use **/ to match directories and subdirectories:

shopt -s globstar
du -shc **/*.jpg

(Note, the -c option on du produces a grand total.)

简单气质女生网名 2025-01-02 02:27:21

不确定 Mac OSX 的 wc,但它应该能够计算字节数:

shopt -s globstar
cat **/*.jpg | wc -c

Not sure about Mac OSX's wc, but it should be able to count the bytes:

shopt -s globstar
cat **/*.jpg | wc -c
就像说晚安 2025-01-02 02:27:21

这可能对你有用:

 find . -name "*.jpg" -exec stat -c "%s" {} \; | paste -sd'+' | bc

This might work for you:

 find . -name "*.jpg" -exec stat -c "%s" {} \; | paste -sd'+' | bc
寂寞花火° 2025-01-02 02:27:21

尝试使用:

du --max-depth=1 -m

它列出工作目录中的所有文件/文件夹,其总大小以兆字节为单位...

try with:

du --max-depth=1 -m

it list all files/folders in working directory with their total size in Megabytes...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文