Thursday, April 8, 2010

Change lower case letters to upper case in bash

This can be done using the tr command.

For example:
echo "change my case" | tr '[a-z]' '[A-Z]'

No comments: