Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => Shell Script => Topic started by: Mark David on March 16, 2007, 01:39:08 PM



Title: csh/C shell scripts: for loop syntax
Post by: Mark David on March 16, 2007, 01:39:08 PM
csh/C shell scripts: for loop syntax

A for loop allows a program to iterate over a set of values. For loops in a C shell script are a useful means of iterating through files or other lists. This recipe describes the for loop syntax and provides some examples.

The basic for loop syntax is:

Code:
foreach var (list) 
   commands;
end

The list can be a specified set of values (1 2 3 4) or anything that will evaluate into a set of values (a wildcard expression will expand the matching filenames into a list). For example, '/usr/bin/[aeiou]*' will expand to the set of files in /usr/bin starting with a vowel (this, of course, comes up all the time). The commands enclosed between do and done will be executed once for each item in the list. The current value from the set can be accessed with the variable $var.

To separate a log file into multiple files based on the month (assuming that the log format contains the three letter month abbreviation):

#!/bin/csh
logfile="/var/adm/messages"
foreach mon (Sun Mon Tue Wed Thu Fri Sat)
   grep $mon $logfile > $logfile.$mon
end