|
Answer» Hello,
I know this is a dumb question but I forgot how do you make a batch file write abcde1234 in a text file.
Thank You
Almndo this Code: [Select]echo abcde1234 >what_ever.txtwill PUT it in the DIR that you are curently in COMMAND > dir name.ext hope that helpsYour first initial output line should read ...
command > dir name.ext #- Initial/Create Output File.
Then all subsequent output lines should read ...
command >> dir name.ext #- Append/Add to Output File.
|