vote up 8 vote down star

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

flag

1 Answer

vote up 13 vote down check

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

copy file1.txt file2.txt

would be written as:

copy file1.txt^
 file2.txt

link|flag
2  
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
Note: that a caret ^ after copy and file1.txt on a new line won't work. – LFSR Consulting Nov 10 '08 at 22:01
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 at 16:47
@LFSR Consulting: I just tried "copy test ^[enter]test_2" and it did work, at least for XP. – Jay Sep 8 at 16:50

Your Answer

Get an OpenID
or

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