>>>>> "KS" == Kent Schumacher <kent at structural-wood.com> writes:

    KS> The find command spec'd below will fail if there are files found by the
    KS> find command that have spaces or quote characters in their names.  The
    KS> following will be slower but will work with all (?) file names.

    KS> 	find . -type f -exec grep -y 'user at ispcom' {} \;

    KS> Note that you might get lots of garbage spewed out since the found file
    KS> may be binary.  In this case you might want to have grep just report
    KS> the filename.

    KS> 	find . -type f -exec grep -ly 'user at ispcom' {} \;

or 

find . -type f -exec grep -qy 'user at ispcom' {} \; -print



_______________________________________________
TCLUG Mailing List - Minneapolis/St. Paul, Minnesota
http://www.mn-linux.org tclug-list at mn-linux.org
https://mailman.real-time.com/mailman/listinfo/tclug-list