bashの&>と>&の違いは何ですか?


30

違いは何である&>>&bashのでは?

tldp後者については言及しませんでした。それは本当にリダイレクト演算子ですか?

または、誰かがより完全なチュートリアルを知っていますか?

回答:


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 section、bashのmanページのを。



5

man bash 言う

標準出力と標準エラーをリダイレクトするには、次の2つの形式があります。

       &>単語
そして
       >&word

2つの形式のうち、最初の形式が優先されます。これは意味的に同等です
に貸した

       >ワード2>&1

shでも動作します。
Mausy5043
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.