使用“find -perm”查找未设置权限的情况

发布于 2024-10-06 09:25:34 字数 272 浏览 12 评论 0原文

我想在我的目录中找到不可读的文件(例如带有 gr 的文件)。所以我尝试了这个:

find 。 -perm -gr

它显示了我所有的文件?所以我尝试了这个:

find 。 -perm -g+r

它只向我显示了可读文件。看起来 -perm -gr 匹配所有文件。我使用的是 CentOS 5.5。我做错了什么吗?看起来 -perm -gr 没有做任何有用的事情。

I want to find the non-readable files in my directory (eg the files with g-r). So I tried this:

find . -perm -g-r

It shows me all of the files?? So I tried this:

find . -perm -g+r

And it showed me only the readable files. It appears that -perm -g-r matches all files. I'm using CentOS 5.5. Am I doing something wrong? It doesn't look like -perm -g-r does anything useful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

等风来 2024-10-13 09:25:34

尝试:

查找 . ! -perm -g+r

Try:

find . ! -perm -g+r

清音悠歌 2024-10-13 09:25:34

如果您想查找您无法读取的文件,您可以使用

find . ! -readable

If you want to find files that are non-readable by you, you could use

find . ! -readable
暖伴 2024-10-13 09:25:34

在我的 Debian 上我需要转义否定“感叹号”
所以在你的情况下,

find . \! -perm -g+r -ls

使用数字也是一种选择。这是我的追求:

find . \! -perm /444 

看看到底发生了什么,使用:

find . \! -perm /444 -exec ls -la {} \;

on my Debian I need to escape the negation "exclamation mark"
so in your case it would be

find . \! -perm -g+r -ls

using numbers is also an option. This was my quest:

find . \! -perm /444 

to see what really happens use:

find . \! -perm /444 -exec ls -la {} \;
思念满溢 2024-10-13 09:25:34

当您执行以下指令时,您能够看到所有文件,因为您是以 root 身份执行的。

find . -perm -g-r

尝试以普通用户身份执行。

You were able to see all files when you executed the below instruction, because you were executing it as root.

find . -perm -g-r

Try executing as a normal user.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文