csh/C Shell Scripts: for Loop Syntax

Contributor Icon Contributed by Rex  
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 as follows:

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), use the following:

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

 

1 Comment -


  1. Anonymous said on May 21, 2010

    These aren’t months. What? :-P

 

RSS feed for comments on this post. TrackBack URL

Leave a comment -