Shell - 如何处理find -regex?

时间:2013-11-07 15:58:19

标签: regex shell find

我需要在一个目录中查找所有以“course”开头的子目录,但是接下来是版本。例如

course1.1.0.0
course1.2.0.0
course1.3.0.0

那么我应该如何修改命令以使其为我提供正确的目录列表?

find test -regex "[course*]" -type d

3 个答案:

答案 0 :(得分:9)

你可以这样做:

find test -type d -regex '.*/course[0-9.]*'

它将匹配名称为course的文件加上数字和点数。

例如:

$ ls course*
course1.23.0  course1.33.534.1  course1.a  course1.a.2
$ find test -type d -regex '.*course[0-9.]*'
test/course1.33.534.1
test/course1.23.0

答案 1 :(得分:3)

您需要删除括号,并对正则表达式使用正确的通配符语法(.*):

find test -regex "course.*" -type d

您还可以使用更熟悉的shell通配符语法,使用-name选项而不是-regex

find test -name 'course*' -type d

答案 2 :(得分:1)

我建议使用正则表达式来精确匹配版本号子目录:

find . -type d -iregex '^\./course\([0-9]\.\)*[0-9]$'

<强>测试

ls -d course*
course1.1.0.0   course1.1.0.5   course1.2.0.0   course1.txt

find . -type d -iregex '^\./course\([0-9]\.\)*[0-9]$'
./course1.1.0.0
./course1.1.0.5
./course1.2.0.0

更新:要恰好匹配[0-9]. 3次,请使用以下命令:

find test -type d -regex '.*/course[0-9]\.[0-9]\.[0-9]\.[0-9]$'