搜索除 755 之外的文件权限

搜索除 755 之外的文件权限

实际上,在 AIX 中,如何在多个目录及其下面的目录中搜索不具有 755 特定权限的文件。

所以我想搜索、、/path/to/等等,但没有。/path/to/mydir/path/to/mydir/andthisoneto/path

答案1

如果我理解正确的话,你想要这个:

find /path -mindepth 2 -type f -not -perm 0755

或者也许只是这样,如果我的理解不正确的话:

find /path/to -type f -not -perm 0755

答案2

所以最后我发现最好的方法是这样的:

  ls -l `find /path/to -type f ! -perm 0755`

感谢所有帮助过我的人。

相关内容