| [ CnUnix ] in KIDS 글 쓴 이(By): coredump (너구리가족) 날 짜 (Date): 2003년 2월 4일 화요일 오전 06시 02분 31초 제 목(Title): Re: [Q]descriptor 3으로 print하기 shell script: echo "foo" 1>&3 csh에서는 안될꺼고요, python: f = os.fdopen(3, "w") print >>f, "foo" f.close() perl: open(f, "| cat >&3"); print f "foo\n" c -> man fdopen |