-a
连接两个不同的条件,必须同时满足才可以,相当于and语法。
find /tmp -name "*.sh" -a -user root
-o
连接两个不同的条件,只要满足一个就可以,相当于or语法。
find /tmp -name ".sh" -o -name ".rpm"
-not
对条件取反。
find /tmp -not -user root
连接两个不同的条件,必须同时满足才可以,相当于and语法。
find /tmp -name "*.sh" -a -user root
连接两个不同的条件,只要满足一个就可以,相当于or语法。
find /tmp -name ".sh" -o -name ".rpm"
对条件取反。
find /tmp -not -user root