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:
|
|||
|
|
|
|
echo hello && echo.world This means you could define "&& echo." as a constant for a newline. |
||
|
|
|
use
|
||||||||||
|
|
|
Either break it into multiple statements, or use printf:
With printf:
|
||
|
|
|
|
I don't think MS-Dos supports new-line characters. If you want output on 2 lines use 2 echos. echo hello echo world |
||
|
|
|
|
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. |
||
|
|
|
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 |
||
|
|
|
|
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 |
||
|
|
|
|
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? |
||
|
|
|
|
@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!!! |
||
|
|