[완료] 쉘 스크립트에서 파일 디스크립터 문제

nomail의 이미지

쉘 스크립트 책을 보면서 공부하는 중에 이상한게 있어서 질문 좀 드립니다.

ls -al a aaa bbb 2>&1 > list
ls -al a aaa bbb > list 2>&1

첫번째 줄은 stderr 출력이 stdout로 리다이렉트(복제) 되어 list파일에 최종적으로 stdout과 stderr 출력이 동시에 저장되어햐 될것 같은데
stdout만 저장됩니다.

그리고 두번째 줄은 stdout은 list파일에 저장 후 stderr를 stdout으로 리다이렉트 하는 것 같은데, 결국은 stdout을 먼저 저장했기 때문에
나중에 리다이렉트 된 stderr은 버려질거라고 생각했는데.. 둘다 list파일에 저장됩니다.

책을 봐도 자세한 설명이 없어서 너무 혼란스러운데요. 잘 아시는 분 계시면 왜 그런지 이유를 좀 알려주시면 고맙겠습니다.

nomail의 이미지

자답입니다.

ls -al a aaa bbb 2>&1 > list

첫번째 리다이렉트인 2>&1 여기서 fd1은 터미널출력을 가리키고 있습니다. 그래서 stderr은 터미널출력으로 나가게 되고요.
두번째 > list에서 stdout(fd1) 출력을 list파일로 지정했기 때문에 화면출력이 아닌 파일로 저장됩니다. 여기서 stderr은 처음에 지정된 터미널출력 그대로 유지되고 두번째 지정된 >list에 영향을 받지 않습니다.

ls -al a aaa bbb > list 2>&1

첫번째 리다이렉트인 >list 여기서 stdout로 터미널출력이 아닌 파일이 지정됩니다. 그 후에 2>&1 를 쓰게 되면 stderr(fd2)이 stdout(fd1)의 출력파일을 따라 가기 때문에 >list로 리다이렉트가 됩니다.

구글링 해보니 많은 설명이 있어서 쉽게 해결했습니다^^

dontdieych의 이미지

1과 2는 '파일 디스크립터'이고 list는 '파일' 입니다.

2>&1

2로 나갈 출력을 '현재' 1이 가리키는 파일로 바꿉니다. 보통 터미널이라면 현재 1의 출력은 /dev/pts/3 이런 파일을 가리키고 있을 겁니다. 그래서 2로 나가는 출력이 그 파일을 가리킵니다.

> file

이건 1> file과 같은 의미 입니다. 이렇게 하면 1이 가리키는 파일을 file로 바꿉니다. 근데 2의 출력은 여전히 /dev/pts/3을 향합니다. 그래서 2의 출력은 /dev/pts/3으로 나가고 1의 출력은 file로 나갑니다.

1과 2는 파일 디스크립터이고 특정 파일을 가리키고 있지만 파일 그 자체를 의미하지는 않습니다. 그래서 리다이렉션을 재지정하는 순서에 따라 실제 결과가 달라질 수 있습니다.

M>&N

이걸 해석하실 때,

M 파일 디스크립터가 가리키는 파일을 N 파일 디스크립터가 가리키는 파일로 계속 따라다녀라.

이런 의미가 아니고,

M 파일 디스크립터가 가리키는 파일을 N 파일 디스크립터가 현재 가리키는 파일로 바꿔라.

이렇게 해석하시면 도움이 될 것 같습니다.

물론 이것은 쉘이 해석하는 문법이니 쉘이 달라진다면 바뀔수도 있겠지요.

http://www.tldp.org/LDP/abs/html/io-redirection.html

http://www.gnu.org/software/bash/manual/bashref.html#Redirections

Note that the order of redirections is significant. For example, the command

ls > dirlist 2>&1

directs both standard output (file descriptor 1) and standard error (file descriptor 2) to the file dirlist, while the command

ls 2>&1 > dirlist

directs only the standard output to file dirlist, because the standard error was made a copy of the standard output before the standard output was redirected to dirlist.

nomail의 이미지

dontdieych님 매번 도움 주셔서 감사드립니다^^
위에 자답을 적었지만 자고 일어나서 다시 보니까 또 헷갈리네요ㅜㅜ
제가 정확하게 개념정리가 안되서 그러는 것 같은데..
짚어주신

M 파일 디스크립터가 가리키는 파일을 N 파일 디스크립터가 현재 가리키는 파일로 바꿔라.

요렇게 해석하니까 머릿속에서 팍팍 정리가 되네요. 감사합니다^^

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.