Exec 3 <& 1 ne yapar?


14

execGeçerli kabukta G / Ç yönlendirmesi yapabileceğini anlıyorum , ancak yalnızca aşağıdaki gibi kullanım görüyorum:

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

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

Bundan <girdi akışı için olduğunu , >çıkış akışı için olduğunu anlıyorum . Peki ne yapar exec 3<&1?

Not: Bunu Yarasalar kaynak kodundan buldum


@Gnouc açıkça doğru, ama unutulmamalıdır exec 3<&1farklıdır 3<&1eski, mevcut kabuk etkilerken bu ikincisinde tek bir komut etkileyecektir.
Mart'ta mikeserv

Yanıtlar:


14

Gönderen 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.

Bazı hata ayıklama yaptım strace:

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

Şunun için 3<&1:

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

Şunun için 3>&1:

dup2(1, 3)                              = 3

Şunun için 2>&1:

dup2(1, 2)                              = 2

Görünüşe göre stdout'u dosya tanımlayıcı 3'e kopyalayarak 3<&1tam olarak aynı görünüyor 3>&1.


Manpage'den, stdout giriş için açık olmadığından bir yönlendirme hatası atmasını beklerdim. Ancak, gerçekten yinelenen stdin (& 0) yapar. Nasıl?
orion

2
@orion: Dahili olarak, aynı dup2()syscall her tür dosya tanımlayıcı için kullanılır; bash'ın x>&yvs x<&ysadece sözdizimi şekeri. Ayrıca, stdio bir tty'ye bağlandığında, tty cihazı genellikle okuma + yazma için açılır ve 0 ile 1 ve 2 arasında çoğaltılır.
user1686

@grawity yani exec 3<&1aynı exec >&3mı?
Zhenkai

Hayır, ama aynı exec 3>&1.
user1686 20:14
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.