Multiple Lines for Single Command

How to continue a command in the next line.

Description: Use ^ as the very last character in a line if you with to continue the command in the next line.
Script:
1.
2.
3.
4.
echo.1. This all goes ^
in line one
echo.2. This all goes ^
in line two
Script Output:
 DOS Script Output
1. This all goes in line one
2. This all goes in line two