exec 6>&1
파일 설명자 1~6을 복사합니다.
그러나 stderr 및 stdout(1 및 2)을 파일 설명자 6에 복사하는 방법은 무엇입니까?
답변1
stdout을 6으로 리디렉션하고 stderr을 stdout으로 리디렉션합니다(따라서 추가로 6으로 리디렉션됩니다).
command >&6 2>&1
답변2
두 개의 파일 설명자를 하나로 리디렉션할 수는 없지만 하나의 파일을 가리키는 두 개의 파일 설명자를 사용할 수는 있습니다.
exec 1>./all.txt
exec 2>./all.txt
답변3
다음을 사용해 보세요:
command &>&6
&>filename
# Redirect both stdout and stderr to file "filename."
# This operator is now functional, as of Bash 4, final release.
M>&N
# "M" is a file descriptor, which defaults to 1, if not set.
# "N" is another file descriptor.