Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Created June 23, 2014 09:15
Show Gist options
  • Select an option

  • Save coderofsalvation/b3b3ca371b6a52a49beb to your computer and use it in GitHub Desktop.

Select an option

Save coderofsalvation/b3b3ca371b6a52a49beb to your computer and use it in GitHub Desktop.
converts uppercase string to lowercase ('FOO' to 'foo')
# converts uppercase string to lowercase ('FOO' to 'foo')
# example: echo "foo" | lowercase (output: foo)
lowercase(){
cat - | tr '[:upper:]' '[:lower:]'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment