Skip to content

Instantly share code, notes, and snippets.

@denitram
Last active October 7, 2015 22:38
Show Gist options
  • Save denitram/3236083 to your computer and use it in GitHub Desktop.
Save denitram/3236083 to your computer and use it in GitHub Desktop.
case translation
# plaatsen in profile
function trans
{
tr '[:upper:]' '[:lower:]' < $1 > $2
}
function TRANS
{
tr '[:lower:]' '[:upper:]' <$1 > $2
}
# Source
UNIX GURU UNIVERSE Unix Tip 2771 - August 4, 2007
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment