批处理文件中的重定向和重复运算符是什么?

时间:2010-11-10 03:39:40

标签: windows operators batch-file redirect

我阅读了manual of batch file command,并说明了使用<&运算符重定向输入和重复,并使用>&运算符重定向输出和重复。

我真的很困惑,我无法理解这是什么意思。谁能给我一些现实生活场景?放在网站上的例子真的很难理解。

1 个答案:

答案 0 :(得分:1)

最常见的用法如下:

 pp.bat > caca.txt 2>&1  

表示:

Send the standad output of pp.bat (handle 1) to caca,txt and the standard error 
(handle 2) to the standard output. Result: both std out & err goto caca.txt  

HTH!