Skip to content

Instantly share code, notes, and snippets.

@namgivu
Last active February 3, 2020 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save namgivu/fd9306946d55204687106bfa8bffe7d1 to your computer and use it in GitHub Desktop.
Save namgivu/fd9306946d55204687106bfa8bffe7d1 to your computer and use it in GitHub Desktop.
Multi-line bash command
echo `cat << EOF
line 1
line 2
EOF`
echo $(cat << EOF
line 1
line 2
EOF
)
cat << EOF
line 1
line 2
EOF
echo "
line 1
line 2
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment