분류 | 게시판 |
베스트 |
|
유머 |
|
이야기 |
|
이슈 |
|
생활 |
|
취미 |
|
학술 |
|
방송연예 |
|
방송프로그램 |
|
디지털 |
|
스포츠 |
|
야구팀 |
|
게임1 |
|
게임2 |
|
기타 |
|
운영 |
|
임시게시판 |
|
옵션 |
|
#include <stdio.h> int main() { fprintf(stdout, "this is 1 stdout \n"); fprintf(stderr, "this is 2 stdERR!!!\n"); fprintf(stdout, "this is 3 stdout \n"); fprintf(stderr, "this is 4 stdERR!!!\n"); fprintf(stdout, "this is 5 stdout \n"); fprintf(stderr, "this is 6 stdERR!!!\n"); return 0; } |
# ./a.out this is 1 stdout this is 2 stdERR!!! this is 3 stdout this is 4 stdERR!!! this is 5 stdout this is 6 stdERR!!! # ./a.out > d.txt 2>&1 # cat d.txt this is 2 stdERR!!! this is 4 stdERR!!! this is 6 stdERR!!! this is 1 stdout this is 3 stdout this is 5 stdout |
출처 | 나 |
죄송합니다. 댓글 작성은 회원만 가능합니다.