Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- echo """
- this is a test
- test test
- """
- is the same as this
- echo "
- this is a test
- test test
- "
- it works, but will cause problems when quotes are present
- example:
- echo "
- she said, "what is that?"
- "
- which will not through an error, but you will loose your quotes.
- output:
- she said, what is that?
- so EOF style is probably better.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement