#!/bin/bash echo "You can use a bunch" echo "of 'echo' lines" echo "to display a message" echo "====================" cat << EOF Or you can use cat like this. It is a bit easier this way. You don't need a bunch or quotes, and it's not calling all the echo functions. just one cat command EOF