The Linux Command Line (책) - Redirecting Standard Error : 이 부분이 이해가 되지 않습니다.
To redirect standard error we must refer to its file descriptor. A program can produce output on any of several numbered file streams. While we have referred to the first three of these file streams as standard input, output and error, the shell references them internally as file descriptors 0, 1 and 2, respectively. The shell provides a notation for redirecting files using the file descriptor number. Since standard error is the same as file descriptor number 2, we can redirect standard error with this notation:
[me&linuxbox ~]$ ls -l /bin/usr 2> ls-error.txt
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
http://linuxcommand.org/tlcl.php 여기 보시면 PDF를 확인하실 수 있어요.
위에 서술한 부분이 이해가 안돼요. Redirection Operator는 뭔지 대충 알겠는데, File Descriptor가 뭔지를 잘 모르겠네요.. 처음 보는 단어라서.. 개념이 잘 안잡하는 거 같아요.
설명해주실 분 계신가요?
File Descriptor Number 를 구글에서 찾아보면. 2번은 stderr 라고 하네요.
자세한 내용은 책이나 상세한 검색을 해야 할거 같습니다.
한국어 판으로 책이 나와 있네요. 번역 서비스도 있으니 참고해보세요.
파일 서술자
https://ko.wikipedia.org/wiki/%ED%8C%8C%EC%9D%BC_%EC%84%9C%EC%88%A0%EC%9E%90
File descriptor
https://en.wikipedia.org/wiki/File_descriptor
2 Standard error STDERR_FILENO stderr
Redirecting Standard Error'로 구글에서 검색해보면. 여러가지 내용이 보이네요. 참고해보세요.
BASH Programming - Introduction HOW-TO- All about redirection
http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-3.html
OLC 공개 소프트웨어 무료 강의도 참고해보세요.
http://olc.kr/main/index.jsp
----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.
매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.
각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com
파일 '스트림'을 구분짓는 정수형 숫자를 File
파일 '스트림'을 구분짓는 정수형 숫자를 File Descriptor라 합니다.
예를 들어 하나의 프로세스내에서 5개의 파일에 각각 입출력을 하고 싶다고 가정합니다, 이때 컴퓨터는 어떻게 각 파일과 프로세스 사이에 스트림을 생성할까요? 이때 사용되는것이 File Descriptor입니다.
커널은 각 프로세스마다 열려있는 File descriptor를 관리하게 되고 프로세스들은 기본적으로 0, 1, 2의 descriptor를 가지게 되는데 이 3개는 standard input, standard error, standard output에 매핑되어 있습니다.
printf 를 통한 문자열 출력도 Standard Output file descriptor를 통해 이루어집니다. (사용자가 임의로 수정가능)
댓글 달기