stdout과 stderr을 동일한 파일로 리디렉션하려면 command 1>file.txt 2>&1
, 또는 을 사용하여 수행 할 수 있습니다 command &>file.txt
. 그러나 왜 command 1>file.txt 2>file.txt
위의 두 명령 과 다른 동작을 합니까?
다음은 확인 명령입니다.
$ cat redirect.sh
#!/bin/bash
{ echo -e "output\noutput" && echo -e "error" 1>&2; } 1>file.txt 2>&1
{ echo -e "output\noutput" && echo -e "error" 1>&2; } 1>file1.txt 2>file1.txt
{ echo -e "error" 1>&2 && echo -e "output\noutput"; } 1>file2.txt 2>file2.txt
{ echo -e "output" && echo -e "error\nerror" 1>&2; } 1>file3.txt 2>file3.txt
{ echo -e "error\nerror" 1>&2 && echo -e "output"; } 1>file4.txt 2>file4.txt
$ ./redirect.sh
$ echo "---file.txt---"; cat file.txt;\
echo "---file1.txt---"; cat file1.txt; \
echo "---file2.txt---"; cat file2.txt; \
echo "---file3.txt---"; cat file3.txt; \
echo "---file4.txt----"; cat file4.txt;
---file.txt---
output
output
error
---file1.txt---
error
output
---file2.txt---
output
output
---file3.txt---
error
error
---file4.txt----
output
rror
결과가 표시되는 한, 두 번째 에코 문자열을 실행할 때 첫 번째 에코 문자열을 덮어 쓰는 것처럼 보이지만 그 command 1>file.txt 2>file.txt
이유는 알 수 없습니다. (어딘가에 참조가 있습니까?)