[질문]gcc컴파일 에러메세지를 파일로 저장하기.

ktw3892의 이미지

gcc -o test test.c >> test.txt
위의 명령으로는 컴파일 에러 메세지를 test.txt파일에 저장이 되지 않내요..
다른 방법이 없을까요?
shell을 사용하던 함수를 사용하던 상관없는데 꼭 에러메세지를 파일로 저장해야하는데 ㅠ.ㅠ
방법좀 가르쳐 주세요....
제가 초보라 잘 몰라서그러는데 고수님들의 조언좀 부탁드립니다.

lesejong의 이미지

gcc -o test test.c >& test.txt

이렇게 하면 되긴 됩니다만.. 기호의 정확한 의미를 설명하지 못해 죄송하네요.

익명 사용자의 이미지

ktw3892의 이미지

냉무

xfmulder의 이미지

보통 우리가 아는 bash 에서는 C쉘 기능이 추가 되어서 >& 가 가능하긴 하지만 원래의 본쉘에서는 >& 는 없습니다.

1> 또는 > 는 표준출력을 파일로 모을때 쓰고
2> 는 표준에러를 파일로 모을때 씁니다.
(마찬가지로 0< 또는 < 는 표준입력을 파일에서 받을때 사용합니다)

표준에러만 파일로 모으고 표준출력은 그냥 화면에 뿌리려면
gcc -o cmd cmd.c 2> compile.err

표준출력은 a.txt 파일로 모으고 표준에러는 b.txt 에 모으려면
gcc -o cmd cmd.c > a.txt 2> b.txt

표준출력과 표준에러를 모두 c.txt 에 모으려면
gcc -o cmd cmd.c > c.txt 2>&1
(2>&1은 표준에러를 1번 fd (stdout)에게 전해주도록 하는것)

C쉘에서 >& 는 표준출력과 표준에러 모두를 모으기 위해 사용합니다.
편리하긴 하지만 (리눅스가 아닌 유닉스계열에서 #!/bin/sh 로 쓰는 )
본쉘 스크립트에서는 못씁니다.
(리눅스는 /bin/sh 가 /bin/bash 라서 가능할 뿐입니다)

------------------------------------------------------------------------
> 2> < 는 모두 파일 리다이렉션이라 부르는 쉘의 기능입니다.
따라서 이 일을 쉘이 해주기 때문에 쉘에 따라 다릅니다.
어떻게 사용하는지 꼭 외워 두시기 바랍니다.
man csh 과 man sh (또는 man ksh) 에 있습니다!.

저는 현업 개발자인데 대부분의 개발자들이 표준출력과 표준에러를 구분할줄 모르는걸 보고 참 어이없게 생각합니다.

표준출력 (현재 자신의 단말기를 fopen한것)
stdout = fopen("/dev/tty?","w+");
fileno(stdout) ==== 1 ( fd는 보통 1 입니다 )

표준에러 stderr = fopen("/dev/tty?","w+");
fileno(stderr) ==== 2 ( fd는 보통 2 입니다 )

표준에러 뿌리기 fprintf(stderr,"this is stdout \n");
표준출력 뿌리기 fprintf(stdout,"this is stdout \n");
또는 printf("this is stdout \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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.