Thanks Rick it worked great and saved me alot
of time.
Linda
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.
> To use it to make names lowercase, type:
>
> ren 'y/A-Z/a-z/' [filename(s)]
And to make names uppercase (as you actually wanted!) try;
ren 'y/a-z/A-Z/' [filename(s)]
Regards,
--
Iain Wade - Optus Internet
Email: [EMAIL PROTECTED]
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe
Attached is a really nifty little perl script which
lets you do bulk renames very easily.
To use it to make names lowercase, type:
ren 'y/A-Z/a-z/' [filename(s)]
Regards,
--
Iain Wade - Optus Internet
Email: [EMAIL PROTECTED]
- Original Message -
From: Hanigan Family <[EMAIL PROTECTED
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