How to create a blank line in a batch file

It may be necessary to create a blank line to help separate text from other text or move text further down the screen.

To create a line add a dot or period after the echo command, for example:

echo.

An alternate solution could be to insert a blank character by typing ALT+255 in the batch file. Although this solution can work, we recommend using ‘echo.’ as it is a solution that will work in all versions of MS-DOS and Windows.

Leave a Reply

You must be logged in to post a comment.