The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 05-16-2008
Yogesh Sawant's Avatar
Yogesh Sawant Yogesh Sawant is offline
Part Time Moderator and Full Time Dad
 

Join Date: Sep 2006
Location: Rossem, Tazenda
Posts: 767
check if this helps you:
Code:
for file in INTR* ; do  nawk '/hi/ {print $0}' $file ; done
replace the nawk command with whatever you have
Reply With Quote