毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> linux >> 正文

linux中 2>&1 是什么意思

更新时间:2012-5-16:  来源:毕业论文

google一下就能找到答案了
2表示标准错误stderr,1表示标准输出stdout,2>&1表示将标准错误输出到标准输出中
相当于dup2(1, 2);
即将描述符2关闭并重定向到描述符1。

Here is one way to remember this construct (altough it is not entirely accurate): at first, 2>1 may look like a good way to redirect stderr to stdout. However, it will actually be interpreted as "redirect stderr to a file named 1". & indicates that what follows is a file descriptor and not a filename. So the construct becomes: 2>&1.
 This isn't really a "UNIX shell" thing

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。