Created
October 8, 2018 08:46
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "$1" | tr '[:upper:]' '[:lower:]' | pbcopy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment