#!/bin/sh i=1 ; while [ "$i" -lt 17 ]; do j=`printf "%0.3d" $i` ditty -n /dev/cua/c$j forcedcd i=`expr $i + 1` done