This one time, at band camp, Alister Waller said:

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

for i in *; do mv "$i" "`echo $i | tr 'a-z' 'A-Z'`"; done

bourne shell and derivatives.

-- 
     "This is not an attack! It is a pre-emptive retaliation."
(o_ '
//\  
v_/_


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

Reply via email to