我想查找没有 777 和 775 权限以及特定用户的文件列表。
我使用了find
如下命令。
find /usr/bin/ -type f ! \( -perm 775 -o -perm 777 -o -user abc \) -exec ls -ltr {} \; 2>>/dev/null
但它返回了错误的值。
我想查找没有 777 和 775 权限以及特定用户的文件列表。
我使用了find
如下命令。
find /usr/bin/ -type f ! \( -perm 775 -o -perm 777 -o -user abc \) -exec ls -ltr {} \; 2>>/dev/null
但它返回了错误的值。