On Mon, 20 Nov 2000, Alister Waller wrote:

> I need to convert lowercase filenames to uppercase.
> its actually on a SCO box so something kinda generic would be nice.

I am sure there are better ways to do it but everything looks like a Perl
script to me. I had to do the exact same thing today to convert a pile of
uppercase JPG files into lower case.

ls *.JPG | perl -ane 'chop; system("mv $_ " . lc($_));'

Rodos

-- 
[EMAIL PROTECTED] | Documentation is like sex: when it is good, it's very
Camion Technology | good; and when it's bad, it's better than nothing.
+61 2 9873 5105   |                                        [Dick Brandon]



-- 
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://slug.org.au/lists/listinfo/slug

Reply via email to