Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you you insert a newline from your batch file output.

I want to do something like:

> echo hello\nworld

Which would output:

hello
world

share|improve this question
3  
Came in useful for me. I had to do echo \n \n | my_app.exe in a script. I did (echo. && echo.) | my_app.exe – Vignesh Feb 18 '11 at 9:54

11 Answers

up vote 98 down vote accepted

echo hello & echo.world

This means you could define & echo. as a constant for a newline.

share|improve this answer
5  
Also works without period: echo hello && echo world – Alexander Prokofyev Oct 10 '08 at 9:14
5  
the example doesn't need a period, but you do need one to echo a blank empty line: echo. && echo hello && echo. && echo world – matt wilkie Jun 16 '11 at 22:37
Can you do this with a single echo so it can be redirected to a file? – Shahbaz Oct 25 '11 at 20:36
2  
@Shahbaz - $ (echo Hello && echo World) > ./File.txt – Nathan J. Brauer Nov 30 '11 at 5:28
3  
The period thing in "echo." never stops amazing me. It's so dated, and still I always forget that the dot must be strictly concatenated with the command name, with no spaces between. There's no error in the post of yours, I'm writing this just as a reminder: "echo ." != "echo." ! – quetzalcoatl Feb 10 '12 at 11:19
show 2 more comments

use

echo hello
echo.
echo world
share|improve this answer
1  
Is it possible while providing a string within a single echo statement? – Brian R. Bondy Sep 25 '08 at 11:52
Why do you need to do it with a single echo statement; where's the harm in having another? I assume you're not simply adding unnecessary constraints for the fun of it... – Rob Sep 25 '08 at 11:54
That doesn't seem any better than echo hello, echo world. – paxdiablo Sep 25 '08 at 11:54
5  
That would actually output "hello, echo world" :) – Јοеу Apr 21 '09 at 19:39
@Rob, I just came across this problem and none of these work. You need to echo in a single statement in my example. I am generating some tex files from HTML and generating a Makefile by using echo "Makefile contents (which has \n)" > Makefile With multiple echos, it wouldn't work – Shahbaz Oct 25 '11 at 20:35

Here you go, create a .bat file with the following in it:

@echo off

REM Creating a Newline variable (the two blank lines are required!)
set NLM=^


set NL=^^^%NLM%%NLM%^%NLM%%NLM%
REM Example Usage:
echo There should be a newline%NL%inserted here.

echo.
pause

You should see output like the following:

There should be a newline
inserted here.

Press any key to continue . . .

You only need the code between the REM statements, obviously.

share|improve this answer
16  
Very impressive, could you take time to explain how the line set NL=^^^%NLM%%NLM%^%NLM%%NLM% works? I can't quite get my head round it – Andy Morris Nov 12 '09 at 13:14
Alas, this doesn't work when passing the echoed string to another program. – Јοеу Mar 18 '11 at 17:52
3  
@andy methinks a +8 comment warrants a question: stackoverflow.com/questions/6379619/… – matt wilkie Jun 16 '11 at 23:06
13  
This is a wonderful example to show that cmd.exe and Windows batch files are totally insane! – mivk Oct 15 '11 at 10:54
Yeah, this is why for such things I usually install ruby :) – quetzalcoatl Feb 10 '12 at 11:28

There is a standard feature echo: in cmd/bat-files to write blank line, which emulates a new line in your cmd-output:

@echo off
@echo line1
@echo:
@echo line2

Output of cited above cmd-file:

line1

line2
share|improve this answer
4  
echo, and echo. also work – BlueRaja - Danny Pflughoeft Jun 10 '11 at 15:50
7  
In fact, any UNUSED special char should work. I always encourage the use of / because the slash is the standard char for command options. Also, I always criticize the use of the dot that somebody in Microsoft unfortunately choose because the command: echo.com give different results depending on the version of MS-DOS/Windows Batch command processor. – Aacini Jul 30 '11 at 4:58

Like the answer of Ken, but with the use of the delayed expansion.

setlocal EnableDelayedExpansion
set LF=^


REM Two empty lines are necessary
echo Line1!LF!Line2

First a single linefeed character is created and assigned to the LF-variable.
This works as the caret at the line end tries to escape the next character, but if this is a Linefeed it is ignored and the next character is read and escaped (even if this is also a linefeed).
Then you need a third linefeed to end the current instruction, else the third line would be appended to the LF-variable.
Even batch files have line endings with CR/LF only the LF are important, as the CR's are removed in this phase of the parser.

The advantage of using the delayed expansion is, that there is no special character handling at all.
echo Line1%LF%Line2 would fail, as the parser stops parsing at single linefeeds.

More explanations are at
SO:Long commands split over multiple lines in Vista/DOS batch (.bat) file
SO:How does the Windows Command Interpreter (CMD.EXE) parse scripts?

share|improve this answer

When echoing something to redirect to a file, multiple echo commands will not work. I think maybe the ">>" redirector is a good choice:

echo hello > temp
echo world >> temp
share|improve this answer
Great! exactly what I needed for redirecting to files. – Shahbaz Oct 25 '11 at 20:40
The first example, using ">", will create a new file, the second one, using ">>", will append to an existing file (or create it if it doesn't already exist). – Yann Duran Aug 9 '12 at 15:27

just like Grimtron suggests - here is a quick example to define it

@echo off
set newline=^& echo.
echo hello %newline%world

output

C:\>test.bat
hello
world
share|improve this answer
It will actually echo an additional newline after "world" – BlueRaja - Danny Pflughoeft Jun 10 '11 at 15:52
@blue the trailing newline seems to be function of the batch file itself. If you repeat the echo hello %newline%world line there are no spaces between. – matt wilkie Jun 16 '11 at 22:59
+1 for the ^& operator – quetzalcoatl Feb 10 '12 at 11:31

You can also do like this,

(for %i in (a b "c d") do @echo %~i)

The output will be,

a
b
c d

Note that when this is put in a batch file, '%' shall be doubled.

(for %%i in (a b "c d") do @echo %%~i)
share|improve this answer

If anybody comes here because they are looking to echo a blank line from a MINGW make makefile, I used

@cmd /c echo.

simply using echo. causes the dreaded process_begin: CreateProcess(NULL, echo., ...) failed. error message.

I hope this helps at least one other person out there :)

share|improve this answer

This worked for me:

(echo asdf
) >myfile.txt

It writes a file like this:

asdf

share|improve this answer
-1 echo asdf >myfile.txt will produce the exact same results. echo appends a newline to the end of the string. – BlueRaja - Danny Pflughoeft Jun 10 '11 at 15:51

Found at http://www.linfo.org/echo.html The -e option is used to enable echo's interpretation of additional instances of the newline character as well as the interpretation of other special characters, such as a horizontal tab, which is represented by \t. ...

ex: echo -e "something\nsomething else"

something

something else

share|improve this answer
Nice, but it works only in the linux world, not in windows batch – jeb Feb 27 at 8:51

protected by Sam Saffron Dec 20 '10 at 2:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.