Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save haeramkeem/95e7a0ea41e4a0f9978ae8b933703bc4 to your computer and use it in GitHub Desktop.

Select an option

Save haeramkeem/95e7a0ea41e4a0f9978ae8b933703bc4 to your computer and use it in GitHub Desktop.
#!/bin/bash
SAMPLE="SaMpLe"
echo ${SAMPLE^^} # This makes the string to be uppercase -> STDOUT("SAMPLE")
echo ${SAMPLE,,} # This makes the string to be lowercase -> STDOUT("sample")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment