标签: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
find . -regex ‘.*\.txt\|.*\.doc\|.*\.mp3‘ #正则表达式 find . -regex ‘.*\.sh\|.*\.txt‘ # find . -regex ‘.*.sh\|.*.txt‘(这种就是错的 .没有转义表示任务字符) # .*: ".*" 表示所有字符,因为.表示任意一个字符,*是前面字符的重复。 .* 来表示任意长度字符串.
(2)排除某些文件类型:
排除目录下所有以html结尾的文件:
(3)排除多种文件类型的示例:
(3)在 GREP 中匹配多个关键字的方法:
grep查找多个数字的文件:
-r 递归,-E:正则 -l:只显示文件名
多种类型文件示例:
用Awk:
标签:style http ar color sp 文件 div log bs
原文地址:http://www.cnblogs.com/hanxing/p/4157858.html