码迷,mamicode.com
首页 > 其他好文 > 详细

find

时间:2014-12-11 17:19:31      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   color   sp   文件   div   log   bs   

查多种文件   -o


zzx@zzx103:~$ sudo  find . -name "*.txt"  -o  -name "*.sh"

 

Linux下find一次查找多个指定文件或者排除某类文件,在 GREP 中匹配多个关键字的方法
(1)Linux下find一次查找多个指定文件:
查找a.html和b.html

  1. find . -name "a.html"  -name "b.html"  


find . -regex ‘.*\.txt\|.*\.doc\|.*\.mp3‘   #正则表达式 find . -regex ‘.*\.sh\|.*\.txt‘     #  find . -regex ‘.*.sh\|.*.txt‘(这种就是错的 .没有转义表示任务字符)   #         .*:      ".*"  表示所有字符,因为.表示任意一个字符,*是前面字符的重复。      .* 来表示任意长度字符串.

  1. find . -regex ‘.*\.txt\|.*\.doc\|.*\.mp3‘  
  2. ./a.txt  
  3. ./a.doc  
  4. ./a.mp3  


(2)排除某些文件类型:
排除目录下所有以html结尾的文件:

  1. find . -type f -name "*.html"    

 

  1. find . -type f ! -name "*.html"       
  2. ./ge.bak.02.09  
  3. ./ge.html.changed.by.jack  
  4. ./a.txt  
  5. ./a.doc  
  6. ./a.mp3  


(3)排除多种文件类型的示例:

  1. find . -type f ! -name "*.html" -type  f ! -name "*.php" -type  f ! -name "*.svn-base"  -type  f ! -name "*.js"  -type  f ! -name "*.gif"  -type  f ! -name "*.png"  -type  f ! -name "*.cpp"  -type  f ! -name "*.h"  -type  f ! -name "*.o"  -type  f ! -name "*.jpg"  -type  f ! -name "*.so"  -type  f ! -name "*.bak"  -type  f ! -name "*.log"   


(3)在 GREP 中匹配多个关键字的方法:
grep查找多个数字的文件:
-r 递归,-E:正则  -l:只显示文件名

  1. root@116.255.139.240:~/a# grep -r -E ‘0341028|100081|10086|10001‘ *  
  2. a.txt:100081  
  3. b.txt:10086  
  4. c/cc.txt:0341028  
  5. c/cc.txt:100081  
  6. c/cc.txt:10086  
  7. c/cc.txt:10001  
  8. c.txt:10001  
  9. d.txt:0341028  

 

  1. grep -r  -E -l ‘0341028|100081|10086|10001‘ *     
  2. a.txt  
  3. b.txt  
  4. c/cc.txt  
  5. c.txt  
  6. d.txt  


多种类型文件示例:

  1. find . -name "*.html" -o -name "*.js"|xargs grep -r "BusiTree"   



用Awk:

    1. find . -name "*.php"|awk ‘{print "cat " $0 " |grep -H dbsys.mxxxx.justwinit.cn"}‘|sh 

find

标签:style   http   ar   color   sp   文件   div   log   bs   

原文地址:http://www.cnblogs.com/hanxing/p/4157858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!