On Mon, Dec 02, 2002 at 11:28:25AM -1000, Thomas David Burns wrote: > I'm using csh. I had several working shell scripts basically > structured like this: > > #/bin/csh 1) You start the shebang line incorrectly. (#! instead of just #) 2) You are using csh. Try: #! /bin/sh -Vince