标签: linux hadoop
linux系统中的目录中有数百个文件。任何人都可以帮我如何列出我读过的那些文件吗?
答案 0 :(得分:-1)
试试这个。
find . -type f \! -perm /u=r
这应该找到您只有读取权限的所有文件。