Hello,
I want to let my .bat script put down some text in results.txt
Can anybody help me?
Write something down in a .txt
Moderator: DosItHelp
Re: Write something down in a .txt
Code: Select all
[command] >> [file]
use >> for add
and > for rewrite
Code: Select all
[command] > [file]
Re: Write something down in a .txt
It creates a .txt file now,
Now i want to let the program write text in it.
Now i want to let the program write text in it.