#!/bin/sh #see documentation on page 379 #run this from the scriptsource directory and it will work #general usage: #for in [ list ] #do # commands #done for i in mary had a little lamb do echo the next word in the list is: $i sleep .5 done #CSC128: Shell Script Examples - basic for loop