find命令常用的多条件组合查找方式

微信公众号: 51码农网
专业编程问答社区
www.51manong.com

常用的条件组合参数有-a(and),-o(or),!(not)
1.查找普通文件和符号链接文件

[root@ky35z 51mn]# find ./ -type f -o -type l

2.在当前目录查找gz包和zip包

[root@ky35z 51mn]# find ./ -name "*.gz" -o -name "*.zip"

3.查找名为info的符号链接文件

[root@ky35z 51mn]# find ./ -name "*info" -a -type l

4.查找log以外的文件

[root@ky35z 51mn]# find ./ ! -name "*.log"

你可能感兴趣的:(shell)