how to change UPPER CASE into lower case?

Cris J. Rhea cjr at ssi.UUCP
Sat Oct 13 18:34:42 AEST 1990


How about (in /bin/sh- not csh):

/bin/ls | while read a
do
b=`echo $a | dd conv=lcase 2>/dev/null`
mv $a $b
done

Cris



More information about the Comp.unix mailing list