How do I display and redirect output to a file. Suppose if I use dos command, dir > test.txt ,this command will redirect output to file test.txt without displaying the results. how to write a command to display the output and redirect output to a file using DOS i.e., windows command prompt, not in UNIX/LINUX.
feedback
|
|
There's a Win32 port of the Unix | |||||||||||||||||
feedback
|
|
I was able to find a solution/workaround of redirecting output to a file and then to the console:
where dir is the command which output needs to be redirected, a.txt a file where to store output. | |||||
feedback
|
|
A simple C# console application would do the trick:
To use this you just pipe the source command into the program and provide the path of any files you want to duplicate the output to. For example:
Will display the results of dir as well as store the results in both files1.txt and files2.txt. Note that there isn't much (anything!) in the way of error handling above, and supporting multiple files may not actually be required. | |||||||||||||||
feedback
|
|
Unfortunately there is no such thing. MS-DOS applications (and Windows console applications, too) only have a single output handle. (Well, there are two If you want to have some kind of multiplexing you have to use an external application which you can divert the output to. This application then can write to a file and to the console again. | |||
|
feedback
|
|
I agree with Brian Rasmussen, the unxutils port is the easiest way to do this. In the Batch Files section of his Scripting Pages Rob van der Woude provides a wealth of information on the use MS-DOS and CMD commands. I thought he might have a native solution to your problem and after digging around there I found TEE.BAT, which appears to be just that, an MS-DOS batch language implementation of tee. It is a pretty complex-looking batch file and my inclination would still be to use the unxutils port. | |||||||
feedback
|
|
tori3852 I found that
didn't work (first few lines of dir listing only - suspect some sort of process forking and the second part, the 'type' command terminated before the dire listing had completed? ), so instead I used:-
which did - sequential commands, one completes before the second starts. Thanks. Good to find this stuff, appreciated. | |||
|
feedback
|
|
Here's a sample of what I've used based on one of the other answers
| |||
|
feedback
|
This will create a log file with the current datetime and you can the console lines during the process | ||||
|
feedback
|
|
Following helps if you want something really seen on the screen - even if the batch file was redirected to a file. The device CON maybe used also if redirected to a file Example:
Also see good redirection description: http://www.p-dd.com/chapter7-page14.html | |||
|
feedback
|
You may find these commands in biterscripting ( http://www.biterscripting.com ) useful.
| |||
|
feedback
|
|
This works, though it's a bit ugly:
It's a little more flexible than some of the other solutions, in that it works statement-by-statement so you can use it to append as well. I use this quite a bit in batch files to log and display messages:
Yes, you could just repeat the ECHO statement (once for the screen and the second time redirecting to the logfile), but that looks just as bad and is a bit of a maintenance issue. At least this way you don't have to make changes to messages in two places. Note that _ is just a short filename, so you'll need to make sure to delete it at the end of your batch file (if you're using a batch file). | |||||
feedback
|
|
mtee is a small utility which works very well for this purpose. It's free, source is open, and it Just Works. You can find it at http://www.commandline.co.uk. Used in a batch file to display output AND create a log file simultaneously, the syntax looks like this:
Where /+ means to append output. This assumes that you have copied mtee into a folder which is in the PATH, of course. | |||
|
feedback
|
|
This will help to redirect both STDOUT and STDERR | |||
|
feedback
|