How do I make long commands go over multiple lines in a Vista/DOS batch file?
|
feedback
|
|
I believe you can break up long lines with the caret ^ as long as the next line starts with a space.
would be written as:
| |||||||||||||||||||||
feedback
|
|
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.
To suppress the escaping of the next character you can use a redirection.
And it is also possible to embedd line feeds into the string
The empty line is important for the success. 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). | |||||
feedback
|