The UNIX and Linux Forums
>
Top Forums
>
Shell Programming and Scripting
how to extract files one by one from a directory and let some processing happen
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Forum Rules
FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
how to extract files one by one from a directory and let some processing happen
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
05-16-2008
Yogesh Sawant
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
Yogesh Sawant
View Public Profile
Visit Yogesh Sawant's homepage!
Find all posts by Yogesh Sawant