Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
Redirect STDOUT Stream for Command to File
How to redirect STDOUT stream from the screen to a file? I want the command to send output data to a file.
✍: FYIcenter.com
By default, the STDOUT stream for a command is mapped the screen.
If the command is writing data to the STDIN stream,
you will see it on the screen.
But, you can use the ">" redirect operator to redirect the STDOUT stream from the screen to a file as shown below:
command options > file-name
For example, the "DIR" command writes a list of files and sub-directories to the STDOUT stream. By default, "DIR" writes the list to the screen. But you can redirect it to a file as shown below:
C:\fyicenter>dir \windows\System32\spool > dir.txt
Now the file dir.txt contains the output of the "DIR" command. If you open it in notepad, you see the following:
Directory of C:\windows\System32\spool 12/13/2016 11:15 AM DIR . 12/13/2016 11:15 AM DIR .. 07/13/2009 11:57 PM DIR drivers 12/12/2017 07:50 PM DIR PRINTERS 07/13/2009 10:20 PM DIR prtprocs 12/13/2016 11:14 AM DIR SERVERS 12/12/2017 09:51 AM DIR tools 0 File(s) 0 bytes
Note that the "> file-name" direction will replace old content of the file, if it is an existing file.
⇒ Redirect STDOUT Stream to the End of File
2022-12-03, 1194👍, 0💬
Popular Posts:
Signing in on my computer that doesn't run 8 works just fine. So must be windows eight that is causi...
How to uninstall OpenOffice.org 2.2? If you want to uninstall OpenOffice.org 2.2, you should follow ...
How to remove BacsTray.exe from the startup application list to gain performance and reduce security...
How do I move the licenses for the tracks that I ripped from CDs to my new computer? Typically, lice...
How to start Apache server manually on Windows systems? If you followed our Apache server installati...