LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1501|回复: 1

使用find命令,如何排除指定的文件?

[复制链接]
发表于 2010-11-25 12:54:45 | 显示全部楼层 |阅读模式
比如当前文件夹下有如下文件:
.
|-- Desktop
|   |-- test1
|   |-- test2
|   `-- test3
|-- anaconda-ks.cfg
|-- install.log
`-- install.log.syslog

“find . -type f ”会包含当前目录下的所有文件,如何使得find找到的文件中不包括install.log、anaconda-ks.cfg和install.log.syslog呢?
我知道grep -v 可以实现这个功能,不用grep只用find可以实现吗?
发表于 2010-11-28 13:01:35 | 显示全部楼层
find . -type f ! -name "*.log" ! -name "*.cfg" ! -name "*.syslog"
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表