按权限过滤文件的命令

发布于 2024-10-16 17:41:51 字数 279 浏览 3 评论 0原文

我需要递归搜索 Linux(Fedora core 12)中的目录并根据权限过滤文件。

但是通过使用 find -perm 我可以根据特定权限过滤文件。例如,权限为 777 或 007 的文件。

是否可以使用 find -perm 命令使用通配符进行搜索? 例如,列出“其他”具有读、写、执行权限的文件(root 和组可以具有任何类型的权限)。

另外,是否可以只显示过滤器匹配的文件列表的计数,而不显示文件列表本身?

提前致谢。

I need to recursively search a directory in Linux(Fedora core 12) and filter files based on permissions.

But by using find -perm I am able to filter files based on specific permissions. Like for eg., files with permissions as 777 or 007.

Is it possible to search with wildcards using the find -perm command??
For e.g., list the files with read, write, execute permissions for 'others'(root and group can have any kind of permission).

Also is it possible just to display the count of the list of files matched by the filter and not the list of files itself??

Thanks in advance.

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

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

发布评论

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

评论(1

薄暮涼年 2024-10-23 17:41:51

是否可以使用 find -perm 命令使用通配符进行搜索?例如,列出“其他”具有读、写、执行权限的文件(root 和组可以拥有任何类型的权限)。

是的,使用带有减号的 -perm -007007 之前,这将设置最小条件。

另外,是否可以只显示过滤器匹配的文件列表的计数,而不是文件列表本身?

command | wc -l

而不是

command

Is it possible to search with wildcards using the find -perm command?? For e.g., list the files with read, write, execute permissions for 'others'(root and group can have any kind of permission).

Yes, use -perm -007 with a minus before the 007, which will set the minimal condition.

Also is it possible just to display the count of the list of files matched by the filter and not the list of files itself??

command | wc -l

instead of

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