如何查找没有所有者/组的文件并设置为root

时间:2018-10-02 18:03:47

标签: rhel xargs chown

我的团队正在测试部署RHEL 6.8虚拟机的群集。部署它们后,我们将测试运行状况检查过程,其中一部分需要确保没有文件或组为空。对于小组部分,我们尝试了以下操作,但收到以下错误。有帮助吗?

df --local -P | awk {'if (NR!=1) print $6'} | xargs -I '{}' find '{}' -xdev -nogroup | xargs -d '\n' chown :root {}

错误: chown: cannot access ‘{}’: No such file or directory

0 个答案:

没有答案