Batch: Display & Redirect Output
Batch How To ...
Display & Redirect Output
http://www.robvanderwoude.com/battech_redirection.php
On this page I'll try to explain how redirection works.
To illustrate my story there are some examples you can try for yourself.
For an overview of redirection and piping, view my original redirection page.
Display text
To display a text on screen we have the ECHO command:
ECHO Hello world
This will show the following text on screen:
Hello world
When I say "on screen", I'm actually referring to the
"DOS Prompt", "console" or "command window", or
whatever other "alias" is used.
Streams
The output we see in this window may all look alike, but it can
actually be the result of 3 different "streams" of text, 3
"processes" that each sends their text to the same window.
Those of you familiar with one of the Unix/Linux shells probably
know what these streams are:
- Standard Output
- Standard Error
- Console
Standard Output is the stream where all, well, standard output of
commands is being sent to.
The ECHO command
sends all its output to Standard Output.
Standard Error is the stream where many (but not all)
commands send their error messages.
And some, not many, commands send their output to the screen
bypassing Standard Output and Standard Error, they use the Console. By
definition Console isn't a stream.
There is another stream, Standard Input: many commands
accept input at their Standard Input instead of directly from the keyboard.
Probably the most familiar example is MORE:
DIR /S | MORE
where the MORE command
accepts DIR's
Standard Output at its own Standar Input, chops the stream in blocks of 25
lines (or whatever screen size you may use) and sends it to its own Standard
Output.
(Since MORE's
Standard Input is used by DIR, MORE must catch its keyboard presses (the "Any Key")
directly from the keyboard buffer instead of from Standard Input.)
Redirection
You may be familiar with "redirection to NUL" to hide
command output:
ECHO Hello world>NUL
will show nothing on screen.
That's because >NUL redirects all
Standard Output to the NUL device, which does nothing but discard it.
Now try this (note the typo):
EHCO Hello world>NUL
The result may differ for different operating system versions, but
in Windows XP I get the following error message:
'EHCO' is not recognized as an internal or external command,
operable program or batch file.
This is a fine demonstration of only Standard
Output being redirected to the NUL device, but Standard Error still being
displayed.
Redirecting Standard Error in "true" MS-DOS (COMMAND.COM)
isn't possible (actually it is, by using the CTTY command, but that would redirect all output
including Console, and input, including keyboard).
In Windows NT 4 and later (CMD.EXE) and in OS/2 (also CMD.EXE) Standard
Error can be redirected by using 2> instead
of>
A short demonstration. Try this command:
ECHO Hello world 2>NUL
What you should get is:
Hello world
You see? The same result you got with ECHO Hello world without the
redirection.
That's because we redirected the Standard Error stream to the NUL device, but
the ECHO command sent its output to the Standard Output stream, which was not redirected.
Now make a typo again:
EHCO Hello world 2>NUL
What did you get? Nothing
That's because the error message was sent to the Standard Error stream, which
was in turn redirected to the NUL device by 2>NUL
When we use > to
redirect Standard Output, CMD.EXE interprets this as 1>, as can be seen by writing and running this one-line batch file
"test.bat":
DIR > NUL
Now run test.bat in CMD.EXE and watch the result:
C:\>test.bat
C:\>DIR 1>NUL
C:\>_
It looks like CMD.EXE uses 1 for Standard Output and 2 for Standard
Error. We'll see how we can use this later.
Ok, now that we get the idea of this concept of
"streams", let's play with it.
Copy the following code into Notepad and save it as "test.bat":
@ECHO OFF
ECHO This text goes to Standard Output
ECHO This text goes to Standard Error 1>&2
ECHO This text goes to the Console>CON
Run test.bat in CMD.EXE, and this is what you'll get:
C:\>test.bat
This text goes to Standard Output
This text goes to Standard Error
This text goes to the Console
C:\>_
Now let's see if we can separate the streams again.
Run:
test.bat > NUL
and you should see:
C:\>test.bat
This text goes to Standard Error
This text goes to the Console
C:\>_
We redirected Standard Output to the NUL device, and what was left
were Standard Error and Console.
Next, run:
test.bat 2> NUL
and you should see:
C:\>test.bat
This text goes to Standard Output
This text goes to the Console
C:\>_
We redirected Standard Error to the NUL device, and what was left
were Standard Output and Console.
Nothing new so far. But the next one is new:
test.bat > NUL 2>&1
and you should see:
C:\>test.bat
This text goes to the Console
C:\>_
This time we redirected both Standard Output and Standard
Error to the NUL device, and what was left was only Console.
It is said Console cannot be redirected, and I believe that's true. I can
assure you I did try!
To get rid of screen output
sent directly to the Console, either run the program in a separate window
(using the START command),
or clear the screen immediately afterwards (CLS).
In this case, we could also have used test.bat >NUL 2>NUL
This redirects Standard Output to the NUL device and Standard Error to the
same NUL device.
With the NUL device that's no problem, but when redirecting to a file one
of the redirections will lock the file for the other
redirection.
What 2>&1 does,
is merge Standard Error into the Standard Output stream, so
Standard output and Standard Error will continue as a single stream.
Redirect "all" output to a single file:
Run:
test.bat > test.txt 2>&1
and you'll get this text on screen (we'll never get rid of this line
on screen, as it is sent to the Console and cannot be redirected):
This text goes to the Console
You should also get a file named test.txt with the following
content:
This text goes to Standard Output
This text goes to Standard Error
Notes: The commands
The commands
test.bat > test.txt 2>&1
test.bat 1> test.txt 2>&1
test.bat 2> test.txt 1>&2
all give identical results.
Redirect errors to a separate error log file:
Run:
test.bat > testlog.txt 2> testerrors.txt
and you'll get this text on screen (we'll never get rid of this
line on screen, as it is sent to the Console and cannot be redirected):
This text goes to the Console
You should also get a file named testlog.txt with the following
content:
This text goes to Standard Output
and another file named testerrors.txt with the following content:
This text goes to Standard Error
Nothing is impossible, not even redirecting the Console output.
Unfortunately, it can be done only in the old MS-DOS versions that
came with a CTTY command.
The general idea was this:
CTTY NUL
ECHO Echo whatever you want, it won't be displayed on screen no
matter what.
ECHO By the way, did I warn you that the keyboard doesn't work
either?
ECHO I suppose that's why CTTY is no longer available on Windows
systems.
ECHO The only way to get control over the computer again is a
cold reboot,
ECHO or the following command:
CTTY CON
A pause or prompt for input before the CTTY CON command meant one had to press the reset
button!
Besides being used for redirection to the NUL device, with CTTY COM1 the control could be passed on to a
terminal on serial port COM1.
Escaping Redirection (not to be interpreted as
"Avoiding Redirection")
Redirection always uses the main or first command's
streams:
START command > logfile
will redirect START's
Standard Output to logfile, not command's!
The result will be an empty logfile.
A workaround that may look a bit intimidating is grouping the
command line and escaping the redirection:
START CMD.EXE /C ^(command ^> logfile^)
What this does is turn the part between parentheses into a
"literal" (uninterpreted) string that is passed to the command
interpreter of the newly started process, which then in turn does interpret
it.
So the interpretation of the parenthesis and redirection is delayed, or
deferred.
Note: |
Be careful when using workarounds like these, they may be broken |
A safer way to redirect STARTed
commands' output would be to create and run a "wrapper" batch file
that handles the redirection.
The batch file would look like this:
command > logfile
and the command line would be:
START batchfile
Some "best practices" when using redirection in batch files:
- Use >filename.txt 2>&1 to merge
Standard Output and Standard Error and redirect them together to a single
file.
Make sure you place the redirection "commands" in this order. - Use >logfile.txt 2>errorlog.txt to
redirect success and error messages to separate log files. - Use >CON to send text to the screen,
no matter what, even if the batch file's output is redirected.
This could be useful when prompting for input even if the batch file's
output is being redirected to a file. - Use 1>&2 to send text to Standard
Error.
This can be useful for error messages. - It's ok to use
spaces in redirection commands. Note however, that a space between an ECHO
command and a > will be
redirected too.
DIR>filename.txt and DIR > filename.txt are
identical, ECHO Hello world>filename.txt and ECHO Hello world > filename.txt are not,
even though they are both valid.
It is not ok to use spaces in >> or 2> or 2>&1 or 1>&2 (before or after is ok). - In Windows
NT 4, early Windows 2000 versions, and OS/2 there used to be some
ambiguity with ECHOed lines ending with a 1 or 2, immediately followed by
a >:
ECHO Hello world2>file.txt would
result in an empty file file.txt and the
text Hello world (without the
trailing "2") on screen (CMD.EXE would interpret it as ECHO Hello world 2>file.txt).
In Windows XP the result is no text on screen and file.txt containing
the line Hello world2, including the
trailing "2" (CMD.EXE interprets it as ECHO Hello world2 >file.txt).
To prevent this ambiguity, either use parentheses or insert an extra space
yourself:
ECHO Hello World2 >file.txt
(ECHO Hello World2)>file.txt - "Merging"
Standard Output and Standard Error with 2>&1 can also be used to pipe a
command's output to another command's Standard Input:
somecommand 2>&1 | someothercommand
Batch: Display & Redirect Output的更多相关文章
- python display color output
起因 在开发项目过程中,为了方便调试代码,经常会向stdout中输出一些日志,默认的这些日志就直接显示在了终端中.而一般的应用服务器,第三方库,甚至服务器的一些通告也会在终端中显示,这样就搅乱了我们想 ...
- Batch - Windows Batch 常用命令
比较符号(不能用 < , >) The reason operators like > are not used is because they have special meani ...
- BOOST Converter Analog/Digital Adjusted Output Voltage TPS61045 MAX1932
DIGITALLY ADJUSTABLE BOOST CONVERTER The TPS61045 is a high frequency boost converter with digitally ...
- 手把手教你编写一个具有基本功能的shell(已开源)
刚接触Linux时,对shell总有种神秘感:在对shell的工作原理有所了解之后,便尝试着动手写一个shell.下面是一个从最简单的情况开始,一步步完成一个模拟的shell(我命名之为wshell) ...
- Unity3D Optimizing Graphics Performance for iOS
原地址:http://blog.sina.com.cn/s/blog_72b936d801013ptr.html icense Comparisons http://unity3d.com/unity ...
- Cisco IOS debug command reference Command A through D
debug aaa accounting through debug auto-config debug aaa accounting : to display information on acco ...
- (英文版)使用Visual Studio 2015 编写 MASM 汇编程序!
原文地址:http://kipirvine.com/asm/gettingStartedVS2015/index.htm#CreatingProject Getting Started with MA ...
- linux tee 命令详解
man tee: NAME tee - read from standard input and write to standard output and files SYNOPSIS tee [OP ...
- shell 脚本阅读之二——ltp工具下的runltp
#!/bin/sh ################################################################################ ## ## ## ...
随机推荐
- java+hadoop+spark+hbase+scala+kafka+zookeeper配置环境变量记录备忘
java+hadoop+spark+hbase+scala 在/etc/profile 下面加上如下环境变量 export JAVA_HOME=/usr/java/jdk1.8.0_102 expor ...
- JavaScript要点 (一) 变量-作用域
JavaScript 作用域 作用域—可访问变量的集合. 全局变量或者函数可以覆盖window对象的变量或者函数: 局部变量和window对象可以覆盖全局变量和函数. JavaScript 作用域 在 ...
- MySQL索引使用方法和性能优化
在自己的一个项目中,数据比较多,搜索也很频繁,这里找到一个建立索引很不错的文章,推荐下. 关于MySQL索引的好处,如果正确合理设计并且使用索引的MySQL是一辆兰博基尼的话,那么没有设计和使用索引的 ...
- Asp.Net Core- 多样性的配置来源
我们知道,ConfigurationProvider提供将数据源转换为字典的功能,数据源可以分为很多种,比如:物理文件.数据库.内存变量等等.物理文件又包括很多种类型的文件,比如:xml.json等等 ...
- cocos2d-x 动画加速与减速
转自:http://novacreo.com/%E7%A8%8B%E5%BA%8F%E7%BB%84/cocos2d-x%E5%8A%A8%E7%94%BB%E5%8A%A0%E9%80%9F%E4% ...
- bmp to jpg
uses Jpeg; function BMPtoJPG(var BMPpic, JPGpic: string): boolean;var Bitmap: TBitmap; JpegImg: TJ ...
- BZOJ 1022 SHOI2008 小约翰的游戏John 博弈论
题目大意:反Nim游戏,即取走最后一个的人输 首先状态1:假设全部的堆都是1,那么堆数为偶先手必胜,否则先手必败 然后状态2:假设有两个堆数量同样且不为1,那么后手拥有控场能力,即: 若先手拿走一堆, ...
- J2EE的13个规范之(三) Servlet简单介绍
Servlet是一种server端脚本,它是一个特殊的Java类,继承自HttpServlet.开发中主要用于处理和响应client的请求. Servlet在容器中执行,事实上例的和销毁创建由容器进行 ...
- 面试题总结之C/C++/MISC
C C pointer,指向数据结构与指向char的指针有区别吗 它们正做+1运算时产生的位移不同 分配在堆的内存与分配在堆栈的内存有什么不同 分配在堆的内存要手动去释放 C structure,数据 ...
- java_spring_List,Map,Properties,Set注入与遍历
package com.dao.bean.www; import java.util.List; import java.util.Map; import java.util.Properties; ...