Skip to content

Instantly share code, notes, and snippets.

@retrography
Created July 23, 2015 15:10
Show Gist options
  • Select an option

  • Save retrography/a1de9b72dba81ca6f388 to your computer and use it in GitHub Desktop.

Select an option

Save retrography/a1de9b72dba81ca6f388 to your computer and use it in GitHub Desktop.
Upper case and lower case for terminal / shell
#!/bin/sh
tr '[A-Z]' '[a-z]' <<(echo "lOWER mE")
#$ lower me
#!/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