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

How do I make long commands go over multiple lines in a Vista/DOS batch file?

share|improve this question

2 Answers

up vote 169 down vote accepted

I believe you can break up long lines with the caret ^ as long as there is a space before the caret or the next line starts with a space.

copy file1.txt file2.txt

would be written as:

copy file1.txt ^
 file2.txt

EDIT'ed to include Gavin's point

share|improve this answer
9  
You can start the next line without a space if you add a space just before the ^ and after your command text. – Joseph Daigle Sep 16 '08 at 3:21
1  
Note: that a caret ^ after copy and file1.txt on a new line won't work. – Gavin Miller Nov 10 '08 at 22:01
1  
Thanks Joseph. I fiddled with this a little before and could not use more than one added line. With a space before the caret, it works. – Jay Sep 8 '09 at 16:47
1  
@LFSR Consulting: I just tried "copy test ^[enter]test_2" and it did work, at least for XP. – Jay Sep 8 '09 at 16:50
1  
Seems to be limited to just the first two additional lines? – Seba Illingworth Jul 31 '10 at 2:47
show 3 more comments

The rule for the caret is:

A caret at the line end, appends the next line, the first character of the appended line will be escaped.
You can use the caret multiple times, but the complete line must not exceed the maximum line length of ~8192 characters (XP/Vista/Win7).

echo Test1
echo one ^
two ^
three ^
four^
*
--- Output ---
Test1
one two three four*

echo Test2
echo one & echo two
--- Output ---
Test2
one
two

echo Test3
echo one & ^
echo two
--- Output ---
Test3
one
two

echo Test4
echo one ^
& echo two
--- Output ---
Test4
one & echo two

To suppress the escaping of the next character you can use a redirection.
The redirection has to be just before the caret. But there exist one curiosity with redirection before the caret. If you place a token at the caret the token is removed.

echo Test5
echo one <nul ^
& echo two
--- Output ---
Test5
one
two


echo Test6
echo one <nul ThisTokenIsLost^
& echo two
--- Output ---
Test6
one
two

And it is also possible to embedd line feeds into the string

setlocal EnableDelayedExpansion
set text=This creates ^

a line feed
echo Test7: %text%
echo Test8: !text!
--- Output ---
Test7: This creates
Test8: This creates
a line feed

The empty line is important for the success.
This works only with delayed expansion, else the rest of the line is ignored after the line feed.

It works because the caret at the line end ignores the next line feed and escapes the next character, even if the next character is also a line feed (carriage returns are always ignored in this phase).

share|improve this answer
The final code block with the line feed example does not display the blank line, even though it is there. (At least it doesn't show up in IE7) Try reformatting using a blockquote instead. – dbenham Nov 22 '11 at 23:15
The question is, do we should support a bad tool that didn't follow the rules (someone call it a browser, but it isn't) or do you should switch to a browser? – jeb Nov 24 '11 at 12:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.