Path: utzoo!attcan!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!usc!elroy.jpl.nasa.gov!ames!vsi1!altos!megadon!clp From: cjr@ssi.UUCP (Cris J. Rhea) Newsgroups: comp.unix Subject: Re: how to change UPPER CASE into lower case? Message-ID: <2203@megadon.UUCP> Date: 13 Oct 90 08:34:42 GMT Sender: clp@megadon.UUCP Organization: Supercomputer Systems Inc. Lines: 9 Approved: clp@megadon.UUCP In-Reply-To: <2161@megadon.UUCP> 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