Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
问题
获取每个文件夹中每个文件的权限
查找具有 777 权限的文件,然后将文件名及其路径打印到列表中
我们可以通过以下方式获取一个文件夹中文件的权限
ls -ls
我不知道如何有效地获取每个文件夹中每个文件的权限。
如何通过 AWK/SED/Python 找到具有 777 权限的文件?
你在找find吗?
find
find /some/path -perm 0777
查找 /some/path -perm 0777 -type f