In article <674 at pttesac.UUCP>, vanam at pttesac.UUCP (Marnix van Ammers) writes:
> Works OK with the bourne shell.
> if [ -f *.c ];then
> Does anyone have any recommendations as to the best way to
> make these scripts palatable to the korn shell?
if [ -f `echo *.c|cut -f1 -d' '` ];then
Adam Reed (mtgzz!avr)