Apa yang dilakukan exec 3 <& 1?


13

Saya mengerti bahwa saya execbisa melakukan pengalihan I / O pada shell saat ini, tetapi saya hanya melihat penggunaan seperti:

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

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

Dari yang saya mengerti itu <untuk aliran input, >untuk aliran output. Jadi apa fungsinya exec 3<&1?

PS: Saya menemukan ini dari kode sumber Bats


@ Gnouc jelas benar, tetapi harus dicatat bahwa exec 3<&1berbeda dari 3<&1yang terakhir akan mempengaruhi satu perintah sedangkan yang pertama mempengaruhi shell saat ini.
mikeserv

Jawaban:


14

Dari 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.

Saya melakukan beberapa debat dengan strace:

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

Untuk 3<&1:

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

Untuk 3>&1:

dup2(1, 3)                              = 3

Untuk 2>&1:

dup2(1, 2)                              = 2

Tampaknya 3<&1melakukan persis sama dengan 3>&1, menduplikasi stdout ke file descriptor 3.


Dari halaman manual, saya berharap untuk melempar kesalahan redirection karena stdout tidak terbuka untuk input. Namun, itu benar-benar duplikat stdin (yaitu & 0). Bagaimana?
orion

2
@orion: Secara internal, dup2()syscall yang sama digunakan untuk segala jenis deskriptor file; bash's x>&yvs x<&yhanyalah sintaksis gula. Juga, ketika stdio dilampirkan ke tty, perangkat tty sangat sering dibuka untuk baca + tulis dan hanya diduplikasi dari 0 ke 1 dan 2.
user1686

@ kegembiraan jadi exec 3<&1sama dengan exec >&3?
Zhenkai

Tidak, tetapi sama dengan exec 3>&1.
user1686
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.