vote up 2 vote down star

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

flag

9 Answers

vote up 6 vote down check

echo hello && echo.world

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

link|flag
Also works without period: echo hello && echo world – Alexander Prokofyev Oct 10 '08 at 9:14
vote up 6 vote down

use

echo hello
echo.
echo world
link|flag
Is it possible while providing a string within a single echo statement? – Brian R. Bondy Sep 25 '08 at 11:52
Ah. Beat me by 30 seconds. :) – Raithlin 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
That would actually output "hello, echo world" :) – Johannes Rössel Apr 21 at 19:39
vote up -1 vote down

Either break it into multiple statements, or use printf:

kburton@indigo64:~$ echo "foo"; echo; echo "bar"
foo

bar
kburton@indigo64:~$

With printf:

kburton@indigo64:~$ printf "this\nthat\n"
this
that
kburton@indigo64:~$
link|flag
vote up 0 vote down

I don't think MS-Dos supports new-line characters. If you want output on 2 lines use 2 echos.

echo hello echo world

link|flag
vote up 4 vote down

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.

link|flag
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 at 13:14
vote up 1 vote down

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
link|flag
vote up 0 vote down

Hi All,

I have a file1.txt that has the content as A and file2.txt that has the content as B . . . . fileXX.txt that the content Z

Could some tell me how to copy contents from all the above files(random number) to another file say file_final.txt with the contents from each file separated by a new line. i.e. A B C D . . . Z

link|flag
vote up 0 vote down

hey thanks for the reply. This will work if i have a few files. Let's say i have a 100 of them. Any sort of "for" logic.. that reads contents from 1 file and at the end of each file's contents, "add" a new line and THEN put contents of the second file and so on and so forth?

link|flag
vote up 0 vote down

@Kyle Burton: "Either break it into multiple statements, or use printf:"

The OP asked a question relating to MS-DOS Batch (look at the tags!) and you talked about Linux shell commands. What a dimwit!!!

link|flag

Your Answer

Get an OpenID
or

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