Created
July 23, 2015 15:10
-
-
Save retrography/a1de9b72dba81ca6f388 to your computer and use it in GitHub Desktop.
Upper case and lower case for terminal / shell
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
| #!/bin/sh | |
| tr '[A-Z]' '[a-z]' <<(echo "lOWER mE") | |
| #$ lower me |
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
| #!/bin/sh | |
| tr '[a-z]' '[A-Z]' <<(echo "UppeR me") | |
| #$ UPPER ME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment