표준오류를 표준출력으로 돌리기

Jmnote (토론 | 기여)님의 2015년 12월 16일 (수) 17:24 판 (→‎실습)
표준오류를 표준출력으로 돌리기

1 실습

root@zetawiki:~# ls not-exist.txt
ls: cannot access not-exist.txt: No such file or directory
→ stderr로 출력된 오류 메시지
root@zetawiki:~# ls not-exist.txt > out.txt
ls: cannot access not-exist.txt: No such file or directory
root@zetawiki:~# cat out.txt
→ 파일로 저장해보면 보이지 않음
root@zetawiki:~# ls not-exist.txt 2> out.txt
root@zetawiki:~# cat out.txt 
ls: cannot access not-exist.txt: No such file or directory
2>를 넣어 표준오류를 파일로 전달하면 화면에는 보이지 않고 파일에만 저장됨

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}