vote up 3 vote down star
1

What's the regular expression I could use with find -regex to find all files that have a .xls or .csv extension?

flag

71% accept rate

2 Answers

vote up 11 vote down check

Why not simply use this:

find -name "*.xls" -o -name "*.csv"

You don't need regex for this.

If you absolutely want to use regex simply use

find -regex ".*\.\(xls\|csv\)"
link|flag
Better answer than mine. +1. – Paul Tomblin Dec 9 '08 at 16:04
Why is a backslash needed before the parenthesis? I know it doesn't work without it, but it seems like it should. – MCS Dec 9 '08 at 16:05
@MCS - without them, it would match a literal ( or ) in the file name. – Paul Tomblin Dec 9 '08 at 16:06
because they are emacs regular expressions by default. use -regextype to change that. – hop Dec 9 '08 at 16:15
Just for the record: I can never remeber which tools want "\(" for grouping and which want "(". I always have to try it to know it. – Joachim Sauer Dec 9 '08 at 16:49
show 2 more comments
vote up 2 vote down
find . -name \*.xls -o -name \*.csv -print
link|flag
Didn't know about the -o option. Thanks! – MCS Dec 9 '08 at 16:02
Does it need parentheses? find . '(' -name *.xls -o -name *.csv ')'-print – Adrian Pronk Dec 9 '08 at 21:48
@Adrian - no, it doesn't. I'm not sure if it would need parens on a non-GNU find where "-print" wasn't already the default action. – Paul Tomblin Dec 10 '08 at 13:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.