查找没有特定权限的文件

时间:2015-11-02 20:57:58

标签: linux file search

如何获取/没有其他读取权限的/的第一个目录的名称(按字母顺序排列)?

我已经尝试了,

find / -type d -perm -o=w+x | sort

find / type d -perm 773 | sort 

我知道它可能非常简单,但我无法让我的大脑弄明白!

1 个答案:

答案 0 :(得分:1)

看起来它可以像这样容易。

find / -type d -not -perm -o=r -print | sort

-perm -o=r匹配 对“其他人”的读取权限的任何文件。 -not前缀否定了这一点。你自己已经想出的其他测试。