lack of -r flag in grep
Saved for later, if like me your version of grep lacks the -r flag like mine under Solaris, and you wish to do a recursive search you can use find and xargs like so.
find /path -type f |xargs grep 'foo'
« tropical storm | Main | is and are »
Saved for later, if like me your version of grep lacks the -r flag like mine under Solaris, and you wish to do a recursive search you can use find and xargs like so.
find /path -type f |xargs grep 'foo'