查找对其他人没有读取权限的文件

时间:2014-08-07 11:04:04

标签: linux bash shell unix find

我想获取所有没有其他人读取权限的文件。 我试过了find . -type f -perm -o-rfind . -type f -perm -o 但他们返回所有文件。似乎我做错了。

感谢。

2 个答案:

答案 0 :(得分:1)

只搜索任何没有其他人读取权限的内容:

find -not -perm -o=r

答案 1 :(得分:1)

您可以使用:

find . -type f ! -perm -o+r