用户中每个 www 文件夹的大小家

发布于 2024-11-18 23:04:35 字数 203 浏览 2 评论 0原文

我需要制作一个 shell 脚本来获取用户主文件夹的每个 www 目录的大小

I need somethings like
USERNAME - WWWdirsize
USERNAME - WWWdirsize
TOTAL www Size = ...

我知道我必须使用 du unix 命令

有什么帮助吗?

I need to make a shell script to get the size of every www directory of my users home folder

I need somethings like
USERNAME - WWWdirsize
USERNAME - WWWdirsize
TOTAL www Size = ...

I know that I have to play with the du unix command

any help?

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

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

发布评论

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

评论(3

你是年少的欢喜 2024-11-25 23:04:35

要获取文件夹的递归大小:du -hs | cut -f 1

因此,要获取每个用户的 www 文件夹的大小:

ls /home | while read username; do echo "$username $(du -hs "/home/$username/public_html" | cut -f 1)"; done

To get the recursive size of a folder: du -hs | cut -f 1

So to get the size of each user's www folder:

ls /home | while read username; do echo "$username $(du -hs "/home/$username/public_html" | cut -f 1)"; done
梦幻之岛 2024-11-25 23:04:35

尝试这样的操作:

du -sh /home/*/public_html

我的系统上的输出:

0       /home/brokeneggs/public_html
3.1G    /home/jonhall/public_html
178M    /home/stubuntu/public_html

例如,如果您希望仅显示用户名而不是完整路径,则可以对输出进行进一步解析。

Try something like this:

du -sh /home/*/public_html

Output on my system:

0       /home/brokeneggs/public_html
3.1G    /home/jonhall/public_html
178M    /home/stubuntu/public_html

You can do further parsing of the output if you want only usernames to appear, and not full paths, for instance.

酷炫老祖宗 2024-11-25 23:04:35

尝试这个命令来计算:

du -sch .

try this command to calculate:

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