Created
August 14, 2018 06:07
-
-
Save nagarajasr/6b9a51a115683512e3f11225a76e1a63 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
ARGS=`some command | sed -e 's/"/\\"/g'` # expecting to replace " with \", doesn't work. instead use: | |
ARGS=$(some command | sed -e 's/"/\\"/g') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment