Categories Shell Transforming string to uppercase in a shell Post author By Ralph Post date January 7, 2008 No Comments on Transforming string to uppercase in a shell Simple and easy, use tr function: $(echo $DATUM | tr '[a-z]' '[A-Z]')$(echo $DATUM | tr '[a-z]' '[A-Z]')