> >  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.

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

Reply via email to