find命令中的操作顺序

时间:2017-04-29 06:45:18

标签: linux find command

这是我想要发生的行动:

find ~ -type f -not -perm 0600 -ls

但是当我尝试这样写的时候

find ~ -ls \( -type f -not -perm 0600 \)

我试图通过()运算符覆盖评估序列-ls test选项总是在括号中的表达式求值之前执行,问题是没有括号对find命令的测试选项有影响或者是什么?

0 个答案:

没有答案