/dev/null

  다른 뜻에 대해서는 비트버킷 문서를 참조하십시오.

1 개요[ | ]

/dev/null
null device, bit bucket, black hole
널 장치, 비트 버킷, 블랙홀
  • 리눅스 null 장치 파일
  • 주로 불필요한 출력 스트림을 버리는 곳으로 사용됨

2 실습[ | ]

[root@zetawiki ~]# echo hello
hello
[root@zetawiki ~]# echo hello > /dev/null
[root@zetawiki ~]#
표준출력(stdout)을 버림
[root@zetawiki ~]# a.sh
-bash: a.sh: command not found
[root@zetawiki ~]# a.sh 2> /dev/null
[root@zetawiki ~]#
표준오류(stderr)를 버림

3 같이 보기[ | ]

4 참고[ | ]

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