在linux find 进行查找的时候,有时候需要忽略某些目录不查找,可以使用 -prune
参数来进行过滤,但必须要注意要忽略的路径参数必须紧跟着搜索的路径之后,否则该参数无法起作用。
以下是指定搜索/wxg目录下的所有文件,但是会忽略/wxg/a的路径:
find /wxg/ -path "/wxg/a" -prune -o -type f -print
如果按照文件名来搜索则为:
find /wxg/ -path "/wxg/a" -prune -o -type f -name "*.conf"
-print
忽略多个目录
find /wxg/ ( -path "/wxg/a"
-o -path "/wxg/b" /) -prune -o
-type f -print
查找当前目录及子目录下带空格文件名的文件
find
. -type
f -name "*
*"
//两个*间有空格,空格在linux上表现形式为\
创建一个带空格文件名的文件如下:
touch
test\
.txt
//创建一个test .txt的文件,test后面有空格,\后面也有空格