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 STDIN Stream for Command to File
How to redirect STDIN stream from the keyboard to an existing file? I want the command to read data from a file.
✍: FYIcenter.com
You can use the "<" redirect operator to redirect the STDIN stream
from the keyboard to an existing file as shown below:
command options < file-name
For example, the "SORT" command reads lines from the STDIN stream, sorts them and print them back to the screen.
By default, "SORT" reads lines from the keyboard. But we can redirect it to a file as shown below:
C:\fyicenter>sort < \windows\system32\drivers\etc\hosts # # 38.25.63.10 x.acme.com # x client host # 102.54.94.97 rhino.acme.com # source server # Additionally, comments (such as these) may be inserted on individual # be placed in the first column followed by the corresponding host name. # Copyright (c) 1993-2009 Microsoft Corp. ...
⇒ Redirect STDOUT Stream for Command to File
2022-12-03, 1197👍, 0💬
Popular Posts:
Error 126: Application Management Service Failed To Start. The Specified Module Could Not Be Found. ...
What is the "Server (LanmanServer)" system service on Windows Server 2012? Can I disable "Server"? "...
What is a slide master? A slide master is a set of slide layouts defined to help you create differen...
Understanding HelpSvc.exe, "Microsoft Help Center Service" - part of the "Help and Support Center" a...
Can I remove startup application "reader_sl.exe - Adobe Acrobat Reader Speed Launch" to speedup my c...