To fake a case-insensitive search with egrep, just
eliminate any letters that might be uppercase. Instead of searching
for Example, just search for
xample. If the letter that might be capitalized
occurs in the middle of a phrase, you can replace the missing letter
with a "dot" (single character)
wildcard, rather than omitting it.
Sure, you could do this the "right
way" with a command like:
% egrep '[eE]xample' *
but our shortcut is easier.