Showing posts with label lower case. Show all posts
Showing posts with label lower case. Show all posts

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]'