Linux常用命令--find
Posted jkhere
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux常用命令--find相关的知识,希望对你有一定的参考价值。
-a
连接两个不同的条件,必须同时满足才可以,相当于and语法。
find /tmp -name "*.sh" -a -user root
-o
连接两个不同的条件,只要满足一个就可以,相当于or语法。
find /tmp -name ".sh" -o -name ".rpm"
-not
对条件取反。
find /tmp -not -user root
以上是关于Linux常用命令--find的主要内容,如果未能解决你的问题,请参考以下文章