in reply to String Finder and Displayer

The following alias, which i call 'cGrep' searches recursively in all the C files: find . -type f \( -name "*.[cCh]" -o -name \*.cpp \) -print |xargs fgrep !* In tcsh you can set it up as:
alias cGrep 'find . -type f \( -name "*.[cCh]" -o -name \*.cpp \) -pri +nt |xargs fgrep !*'
and use it as:
> cGrep '\"[^;]*'
It is not doing exactly the same as your script but i find it useful.