exec 3 <& 1 ทำอะไร


14

ฉันเข้าใจว่า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

จาก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

ดูเหมือนว่า3<&1จะทำเช่นเดียวกันกับ3>&1stdout ซ้ำกับ file descriptor 3


จาก manpage ฉันคาดว่าจะมีข้อผิดพลาดในการเปลี่ยนเส้นทางเนื่องจาก stdout ไม่เปิดให้ป้อนข้อมูล อย่างไรก็ตามมันทำซ้ำ stdin (ซึ่งคือ & 0) อย่างไร?
orion

2
@orion: ภายในdup2()syscall เดียวกันถูกใช้สำหรับตัวอธิบายไฟล์ทุกชนิด bash's x>&yvs x<&yเป็นเพียงซินแท็กซ์น้ำตาล นอกจากนี้เมื่อ stdio เชื่อมต่อกับ tty อุปกรณ์ tty มักจะเปิดขึ้นเพื่ออ่าน + เขียนและทำซ้ำตั้งแต่ 0 ถึง 1 และ 2
user1686

@grawity exec 3<&1เป็นเช่นเดียวกับexec >&3?
Zhenkai

ไม่มี exec 3>&1แต่มันก็เป็นเช่นเดียวกับ
user1686
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.