Just got a complaint from a user about a Perl script that wasn’t handling regular expressions correctly. Specifically, when he typed:
ourspecial-cat | grep 'foo\|bar'
he got a match on “foo” or “bar”, but when he typed:
ourspecial-grep 'foo\|bar'
he got nothing at all.
My surprise came from the fact that the normal grep worked, when everyone knows that you need to use egrep for that kind of search, and in any case, since the entire regular expression was in single-quotes, you don’t need the backslash. Removing the backslash made our tool do what he wanted, but broke grep.
Sure enough, if you leave out the backslash, you need to use egrep or grep -E, but if you put it in, you can use grep. What makes it really fun is that they’re the same program, GNU Grep 2.5.1, and running egrep should be precisely the same as running grep -E.
Makes me wonder what other little surprises are hidden away in the tools I use every day…