Find all files with 777 permissions/ specific user

find ./ -type f -perm 0777


find ./ -type f -user userid



And if you like to find all files without Permission 0777 then just enter a ! before the perm, e.g.

find ./ -type f ! -perm 0777

posted @ 2020-01-14 18:01  kakaisgood  阅读(112)  评论(0编辑  收藏  举报