[900] Print an empty line of CMD batch scripts

发布时间 2023-10-10 09:05:28作者: McDelfino

Use the echo. command to print an empty line.

@echo off
echo This is a line of text
echo.
echo This is a new line of text

This will produce the output:

This is a line of text

This is a new line of text

Using echo. is a common method for printing newline characters in batch scripts to create visual separation between lines of text.