K 10 svn:author V 4 ache K 8 svn:date V 27 2003-08-04T14:10:33.000000Z K 7 svn:log V 306 Fix double-wrong tr usage: tr '[a-z]' '[A-Z]' First of all, it should be written as: tr 'a-z' 'A-Z' ranges not encolosed in [] according to POSIX, so [] just included in the replacement. Second, it should be written: tr '[:lower:]' '[:upper:]' since a-z and A-Z may have different length in some locales. END