本文介绍了如何找到的所有文件的总大小的用户的所有权下?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图找出给定用户拥有的所有文件的总大小。

I'm trying to find out the total size of all files owned by a given user.

我试过这样:

find $myfolder -user $myuser -type f -exec du -ch {} +

但是,这给了我一个错误:

But this gives me an error:

缺少的参数给exec

和我不知道如何解决它。有人可以帮助我?

and I don't know how to fix it. Can somebody can help me with this?

推荐答案

您只需要终止-exec。如果你想为每个目录的总数
可能是型ð是必需的。

You just need to terminate the -exec. If you want the totals for each directory possibly -type d is required.

find $myfolder -user $myuser -type d -exec du -ch {} \;

这篇关于如何找到的所有文件的总大小的用户的所有权下?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 15:43