The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 10-24-2005
vertigo23's Avatar
vertigo23 vertigo23 is offline
Registered User
  
 

Join Date: Jul 2005
Location: SF, CA
Posts: 73
find /folder/path -name "*.html" -or -name "*.xml" | xargs grep ABC

or, if you run into errors due to space characters in the filename:

find /folder/path -name "*.html" -or -name "*.xml" -print0 | xargs -0 grep ABC

man find for more info