egrep "foo|bar" *.txt
ou
grep "foo\|bar" *.txt
grep -E "foo|bar" *.txt
citant de manière sélective la page de manuel de gnu-grep:
-E, --extended-regexp
Interpret PATTERN as an extended regular expression (ERE, see below). (-E is specified by POSIX.)
Matching Control
-e PATTERN, --regexp=PATTERN
Use PATTERN as the pattern. This can be used to specify multiple search patterns, or to protect a pattern
beginning with a hyphen (-). (-e is specified by POSIX.)
(...)
grep understands two different versions of regular expression syntax: “basic” and “extended.” In GNU grep, there
is no difference in available functionality using either syntax. In other implementations, basic regular
expressions are less powerful. The following description applies to extended regular expressions; differences for
basic regular expressions are summarized afterwards.
Au début, je n'ai pas lu plus loin, alors je n'ai pas reconnu les différences subtiles:
Basic vs Extended Regular Expressions
In basic regular expressions the meta-characters ?, +, {, |, (, and ) lose their special meaning; instead use the
backslashed versions \?, \+, \{, \|, \(, and \).
J'ai toujours utilisé egrep et inutilement parens, parce que j'ai appris des exemples. Maintenant j'ai appris quelque chose de nouveau. :)