Where Online Learning is simpler!
The Direct Path to Linux UBUNTU
Chapter 5
UNIX Shell Programming
Learn UNIX by examples
Execute the shell scripts:
$ cat foreach.csh #!/bin/csh # Purpose: To demonstrate the usage of foreach in C Shell (csh). # Author: Wahid Lutfy # CopyRight © MyWebUnivesity.com # Print a list of sports foreach sport ( Soccer Football Swimming Running Basketball Handball Teniss VoleyBall ) echo $sport end # Print a list of characters, upper-case, lower-case and numbers. foreach ch ( A B C D E F a b c d e f 1 2 3 4 5 ) echo $ch end # Print a list of fruits foreach fruit ( Apple Bannana Grape Orange Pear ) echo $fruit end
Back to Chapter 5 Shell Programming