At the risk of starting another scripting thread before
we finish with the previous one...heh,heh..
(I was actually working on the tr version)
(hack)@ricklman# cat `which upperall`
#!/bin/sh
for i in $*
do
echo "Moving $i to `echo $i | tr [a-z] [A-Z]`"
mv $i `echo $i | tr [a-z] [A-Z]`
done
Caution, this does not make a backup copy.
use "mv -i" for safety.
--
Rick L. Mantooth
[EMAIL PROTECTED]
Time is what keeps things from happening all at once
On Wed, 1 Dec 1999, Hanigan Family wrote:
> Hi,
> Is there a quick way to rename files
> from lower to uppercase. I used
> kermit to download a bunch of files
> that were all uppercase names and
> it converted them to all lowercase.
> Thanks
> Linda
>
>
> --
> To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
> as the Subject.
>
>
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.