1.

Solve : How can I save the outcome results of commands in command prompt.?

Answer»

Sir, many thanks for your CORDIAL HELP. Now my question is how to save the results that COME out after hitting the key with a command ?lets use Echo as an example(NOTE: this works with every command):

Code: [Select]echo Hello > OUTPUT.txt
This will write the output of the echo command, in which case is "Hello" to the file
output.txt(it will create this file)

To ADD more information to a file, after it is created, just use this:
Code: [Select]echo Hello >> output.txt
It will add "Hello" to output.txt.

Hope this Helps
,Nick(macdad-)



Discussion

No Comment Found