按权限过滤文件的命令
我需要递归搜索 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否可以使用 find -perm 命令使用通配符进行搜索?例如,列出“其他”具有读、写、执行权限的文件(root 和组可以拥有任何类型的权限)。
是的,使用带有减号的
-perm -007
在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).
Yes, use
-perm -007
with a minus before the007
, 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??
instead of