Created
July 28, 2016 13:17
-
-
Save khurshid-alam/c24c5b64637547f8edcc46168ed32c66 to your computer and use it in GitHub Desktop.
This file contains 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
FOO=' test test test ' | |
FOO_NO_EXTERNAL_SPACE="$(echo -e "${FOO}" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')" | |
echo -e "FOO_NO_EXTERNAL_SPACE='${FOO_NO_EXTERNAL_SPACE}'" | |
# > FOO_NO_EXTERNAL_SPACE='test test test' | |
echo -e "length(FOO_NO_EXTERNAL_SPACE)==$(echo -ne "${FOO_NO_EXTERNAL_SPACE}" | wc -m)" | |
# > length(FOO_NO_EXTERNAL_SPACE)==14 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment