# 删除目录下那两个文件之外的所有文件
find
dir
/ -
type
f ! -name file1 -a ! -name file2 |
xargs
rm
-f
# 删除所有空目录(非空目录不会被删除,但是会出错误信息,可以忽略)
find
dir
/ -
type
d |
xargs
rmdir
-p
使用bash shell删除目录中的特定文件的3种方法_linux shell_脚本之家
http://www.jb51.net/article/51575.htm
假设当前目录下有 a,b,c 三个目录,里面都有一个 s.txt 文件。
[caz28]~/temp$find . -type f -name s.txt -print
./b/s.txt
./c/s.txt
./a/s.txt
要忽略 a 目录:
[caz28]~/temp$find . -path ./a -prune -o -type f -name s.txt -print
./b/s.txt
./c/s.txt
./a 不能写成 ./a/, 否则没有作用。-o 是 -or 的意思,也必须加。
要忽略 a,b 两个目录:
[caz28]~/temp$find . −path./a−o−path./b -prune -o -type f -name s.txt -print
./c/s.txt
( 和 ) 前要加 , 而且两个转义字符前后都要有空格。
路径名和文件名,如果有空格,必须用双引号括起来。
最后一个命令,应该显示如下:
但CSDN显示效果如下:
把括号显示没了,应该是CSDN blog系统的bug。
还有一种方式如下:
[caz28]~/temp$find . -type f -name s.txt ! -path ./a/* ! -path ./b/*
./c/s.txt
注意空格,还有path里是有星号的。这个效率应该不如上面。
转自
find 命令查找文件时忽略某些目录 - CSDN博客 http://blog.csdn.net/caz28/article/details/50985844