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.