如何获取对其他目录没有读取权限的/的第一个目录(按字母顺序)的名称?
我试过了,

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

find / type d -perm 773 | sort

我知道这可能是件很简单的事情,但我就是没办法让我的大脑去弄清楚!

最佳答案

似乎可以这么简单。

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

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

关于linux - 查找没有特定权限的文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33486786/

10-12 05:34