|
Answer» Hi,
I am executing a batch FILE, which calls few softwares and will RUN for few hours. The process in FORM of TEXT is displayed in command prompt . I am looking to dump the text diaplayed on the cmd to seperate file.
Kindly suggest on thisYou can redirect the output from your programs to you text file, like this
Code: [Select]REM empty the file >textfile echo. REM run programs and save output >>textfile program1 param param etc >>textfile program2 param param etc >>textfile program3 param param etc Thank you very much for the prompt reply
|