我只想在特定用户的许可下查找文件。例如,如果我想查找我具有完全许可权的文件。
我可能会做类似的事情:
find . -user $(whoami) -perm
但是,-perm如果我想忽略root和其他用户的许可,该怎么办。
-perm
从…开始:
find /path/to/file -user user1 -perm -u+rwx
这意味着:查找以开头/path/to/files,由拥有的文件user1,其中group和other的权限可以是任何东西(-在权限字符串前面),而用户权限仅是:rwx
/path/to/files
user1
-
rwx
要仅搜索文件(无目录),然后添加-type f。
-type f