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
|
How can you you insert a newline from your batch file output. I want to do something like:
Which would output:
|
|||||
|
|
This means you could define |
|||||||||||||||||||
|
|
use
|
|||||||||||||||
|
|
Here you go, create a .bat file with the following in it:
You should see output like the following:
You only need the code between the REM statements, obviously. |
|||||||||||||||||
|
|
There is a standard feature
Output of cited above cmd-file:
|
|||||||||
|
|
Like the answer of Ken, but with the use of the delayed expansion.
First a single linefeed character is created and assigned to the LF-variable. The advantage of using the delayed expansion is, that there is no special character handling at all. More explanations are at |
|||
|
|
|
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 |
|||||
|
|
just like Grimtron suggests - here is a quick example to define it
output
|
|||||||
|
|
You can also do like this,
The output will be,
Note that when this is put in a batch file, '%' shall be doubled.
|
||||
|
|
|
If anybody comes here because they are looking to echo a blank line from a MINGW make makefile, I used
simply using I hope this helps at least one other person out there :) |
|||
|
|
|
This worked for me:
It writes a file like this:
|
||||
|
|
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:
|
|||
|
|
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.