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

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

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?

추신: 나는 이것을 다음에서 찾았습니다.박쥐 소스 코드

답변1

에서 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

관련 정보