Last active
July 13, 2019 19:11
-
-
Save adrianparvino/527a157945747a31cc149e193ffd0ef3 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
cat <<EOF | |
y="1" | |
${X+x="$X"} | |
EOF | |
y="1" | |
x=1 |
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
cat <<EOF | |
y="1" | |
${X+x=\"$X\"} | |
EOF | |
y="1" | |
x=\"1\" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment