csh/C shell scripts: for loop syntax

Contributor Icon Contributed by Rex Date Icon January 9, 2004  
Tag Icon Tagged: csh shell scripting

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:

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

Previous recipe | Next recipe |
 

 
close Reblog this comment
blog comments powered by Disqus