exec 3 <&1は何をしますか?


13

exec現在のシェルでI / Oリダイレクションを実行できることは理解していますが、次のような使用方法しか見ていません。

exec 6<&0   # Link file descriptor #6 with stdin.
            # Saves stdin.

exec 6>&1   # Link file descriptor #6 with stdout.
            # Saves stdout.

それから、私はそれ<が入力ストリーム用で>あり、出力ストリーム用であることを理解しています。それではどうしexec 3<&1ますか?

PS:Batsのソースコードからこれを見つけました


@Gnoucは明らかに正しいですが、前者は現在のシェルに影響を与えるのに対し、後者は単一のコマンドに影響を与えるというexec 3<&1点で異なることに注意する必要があり3<&1ます。
mikeserv 14年

回答:


14

からbash manpage

Duplicating File Descriptors
       The redirection operator

              [n]<&word

       is used to duplicate input file descriptors.  If word expands to one or
       more  digits,  the file descriptor denoted by n is made to be a copy of
       that file descriptor.  If the digits in word  do  not  specify  a  file
       descriptor  open for input, a redirection error occurs.  If word evalu
       ates to -, file descriptor n is closed.  If n  is  not  specified,  the
       standard input (file descriptor 0) is used.

       The operator

              [n]>&word

       is  used  similarly  to duplicate output file descriptors.  If n is not
       specified, the standard output (file descriptor 1)  is  used.   If  the
       digits  in word do not specify a file descriptor open for output, a re
       direction error occurs.  As a special case, if n is omitted,  and  word
       does not expand to one or more digits, the standard output and standard
       error are redirected as described previously.

私はいくつかのデバッグを行いましたstrace

sudo strace -f -s 200 -e trace=dup2 bash redirect.sh

のために3<&1

dup2(3, 255)                            = 255
dup2(1, 3)                              = 3

のために3>&1

dup2(1, 3)                              = 3

のために2>&1

dup2(1, 2)                              = 2

stdoutをファイル記述子3に複製し3<&1、とまったく同じように思わ3>&1れます。


マンページからは、stdoutが入力用に開かれていないため、リダイレクトエラーがスローされると予想されます。ただし、実際にはstdin(&0)を複製します。どうやって?
オリオン14年

2
@orion:内部的にはdup2()、すべての種類のファイル記述子に同じsyscallが使用されます。bashのx>&yvs x<&yは単なる構文糖です。stdioのがttyに接続されている場合にも、ttyデバイスは、非常に多くの場合、読み取り+書き込みのために開かれ、ちょうど0から1に複製し、2
user1686

@grawityはそうexec 3<&1と同じですかexec >&3
鎮海14年

いいえ、しかしそれはと同じexec 3>&1です。
user1686 14年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.