Created
February 11, 2015 07:26
-
-
Save kevinastone/aa194e806da4c8553190 to your computer and use it in GitHub Desktop.
ENV newlines
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
env TEST="line1\nline2" python -c "import os; print repr(os.environ['TEST'])" | |
'line1\\nline2' | |
env TEST="line1 | |
line2" python -c "import os; print repr(os.environ['TEST'])" | |
'line1\nline2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment