Friday, May 8, 2009

Simple Shell Script to iterate through list of files

Simple Shell Script to iterate through list of files and do the stuff.

FILES="TEST*.dat"
for f in $FILES
do
echo "Processing file file $f file..."
process_file $f
done

No comments:

Post a Comment