bash中的&>和>&有什么区别?


30

&>>&bash 和有什么不一样?

tldp没有提到后者。它真的是重定向运算符吗?

还是有人知道更完整的教程?

Answers:


38

bash man页面:

There  are  two  formats  for  redirecting standard output and standard
   error:

          &>word
   and
          >&word

   Of the two forms, the first is preferred.  This is semantically equiva-
   lent to

          >word 2>&1

阅读redirection sectionbash手册页的。


8

在bash中,>&word&>word(首选语法)将标准输出和标准错误重定向到同一位置。等同于>word 2>&1。在bash手册中查找它。


5

man bash

重定向标准输出和标准错误有两种格式:

       &>单词
和
       >&word

在两种形式中,第一种是优选的。这在语义上是等效的
借给

       >单词2>&1

工程在sh太。
Mausy5043 '16
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.