Re: How to change file name to uppercase

1999-12-02 Thread Hanigan Family
Thanks Rick it worked great and saved me alot of time. Linda -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.

Re: How to change file name to uppercase

1999-12-01 Thread Iain Wade
> 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

Re: How to change file name to uppercase

1999-12-01 Thread Iain Wade
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

Re: How to change file name to uppercase

1999-12-01 Thread Rick L. Mantooth
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