Skip to content

Instantly share code, notes, and snippets.

@evanslai
Created March 22, 2019 02:42
Show Gist options
  • Save evanslai/5264c36a301d2d1efb1bb2bfc22b1e73 to your computer and use it in GitHub Desktop.
Save evanslai/5264c36a301d2d1efb1bb2bfc22b1e73 to your computer and use it in GitHub Desktop.
shell helper functions
* toUpperLower.sh
toLower() {
echo $1 | sed 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'
}
toUpper() {
echo $1 | sed 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment