exec 3 <& 1은 무엇을합니까?


14

나는 그 이해 exec내가 할 수 있습니다 / 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합니까?

추신 : 나는 이것을 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

stdout을 파일 설명자 3에 복제 3<&1하는 것과 정확히 동일한 것으로 보입니다 3>&1.


맨 페이지에서 stdout이 입력을 위해 열려 있지 않기 때문에 리디렉션 오류가 발생할 것으로 예상합니다. 그러나 실제로는 stdin (& 0)을 복제합니다. 어떻게?
오리온

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.