Skip to content

Instantly share code, notes, and snippets.

@tomma5o
Created October 8, 2018 08:46
Show Gist options
  • Save tomma5o/26b585886dc13cdd89be0b8967a492c0 to your computer and use it in GitHub Desktop.
Save tomma5o/26b585886dc13cdd89be0b8967a492c0 to your computer and use it in GitHub Desktop.
Simple command for converting the uppercase text in lower through command line (OSX)
echo "$1" | tr '[:upper:]' '[:lower:]' | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment