标签: linux bash
如何列出当前目录中具有读取权限的所有文件?
答案 0 :(得分:1)
find -maxdepth 1 -type f -perm xxx
根据此question,xxx表示targer文件的文件权限。