cat /dev/null > a.txt 2>&1

QnA 2009. 7. 27. 20:18
cat /dev/null 을 수행하면서 나타나는 Standard out의 결과를 a.txt에 담고, Standard Error의 내용도 a.txt에 담는다.

USAGE : n>&m means redirect FD n to the same places as FD m. Eg, 2>&1 means send STDERR to the same place that STDOUT is going to.

Probably because if you did 2>1 it would output stderr to a file named '1'.

WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,