Skip to content

Instantly share code, notes, and snippets.

@sgen
Created August 28, 2018 19:33
Show Gist options
  • Save sgen/1e38ce6b6b45862538e68f7dd3ce8401 to your computer and use it in GitHub Desktop.
Save sgen/1e38ce6b6b45862538e68f7dd3ce8401 to your computer and use it in GitHub Desktop.
Write a Heredoc with a conditional command afterwards
#!/bin/bash
# Group cat Heredoc with {}
{ cat << EOF > 'test.txt'
Testing 1 2 3
EOF
} || { # { must be on a new line.
# Do something else
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment