[완료]unix c 코딩 관련 질문입니다..

skillzmjay의 이미지

안녕하세요

헤더파일에서 원하는 구조체의 내용을 발췌하고 싶은데
어떤식으로 할지 감이 잘 안잡히네요;;

typedef struct {
char aaa[12];
char bbb[11];
char ccc[23];
char ddd[22];
} A_S;

typedef struct {
char b_aaa[12];
char b_bbb[11];
char b_ccc[23];
char b_ddd[22];
} B_S;

예를 들면 헤더파일에 다음과 같은 구조체들이 있을때

B_S 구조체내 변수의 길이를 뽑아내고 싶습니다. (12, 11, 23, 22)

한줄씩 순차적으로 읽으면서 B_S 란 문구를 찾을수 만 있다면 쉽게 구현할수
있을거 같은데 구조체 정의가 항상 '} 0000;' 이런식으로 중괄호에 한칸띄고
구조체명이 정의되었다고는 확신할순 없습니다. (그래서 memcmp 를 못쓰겠습니다...)
제가 생각하는 방식은 한줄씩 읽으면서 파이프를 통해 grep 으로
해당 구조체명이 있는지 확인하면 될거 같은데 (grep 한 결과를 strlen 했을때 0이 아닌걸 찾으면 되겠죠?) 이걸 어떻게 구현해야할지 모르겠네요;
fgets, fprintf, stdout, popen, grep...등등이 떠오르는데 정리가 안되네요 ㅠㅠ

고수님들 도움좀 부탁드립니다! 굽신굽신

skillzmjay의 이미지

echo 를 쓰면 되겠네요..게시판 더렵혀서 죄송합니다.

익명 사용자의 이미지


간단하게는 아래처럼 할 수 있겠네요..
struct안에 nested 중괄호가 있는 경우는 안되고요. 그밖에 안되는 경우도 있을 수 있습니다.

cat header.h | perl -ne "print if /struct\s*{/../}/" | perl -ne "print if /\[\d+\]/ && s/.*\[(\d+)\].*/\1/"

익명 사용자의 이미지

아.. 원하는 스트럭쳐만 골라서 하려면

첫번째 perl의 /}/ 부분을 /}\s*B_S\s*;/로 하시면 되겠네요..

skillzmjay의 이미지

perl 이 안먹네요;;;

ksh: perl: 찾을 수 없음
ksh: perl: 찾을 수 없음

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.