From: [EMAIL PROTECTED] (Gary W. Swearingen)

> >  find . -name '*.html' -print | xargs grep __FILE__

One might as well get in the habit of using the more robust

    find . -name '*.html' -print0 | xargs -0 grep __FILE__

Otherwise, the "-print" isn't needed at all; it's a default.
Very true. Much like Greg pointed out, I'm using the correct
commands, I just need to start using them correctly ;)

-Bill

_________________________________________________________________
Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to