无法通过 AWK/SED/Python 找到权限为 777 的文件/文件夹
问题
- 获取权限时遇到
每个文件夹中的每个文件
来查找文件 其中有 777 权限,然后 打印文件名及其路径 到列表
我们可以通过
ls -ls
获取一个文件夹中文件的权限,我不知道如何有效地获取每个文件夹中每个文件的权限。
如何通过 AWK/SED/Python 查找权限为 777 的文件?
Problems
to get permissions
of each file in every folderto find files
which have 777 permissions, and then
print the filenames with their paths
to a list
We can get permissions for files in one folder by
ls -ls
I do not know how you can get permissions of each file in every folder effectively.
How can you find files which have permissions 777 by AWK/SED/Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在寻找
查找
吗?Are you looking for
find
?查找/some/path -perm 0777 -type f
find /some/path -perm 0777 -type f