Created
July 7, 2022 00:19
-
-
Save haeramkeem/95e7a0ea41e4a0f9978ae8b933703bc4 to your computer and use it in GitHub Desktop.
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/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