[완료] shell script를 이용하여 특정 단어 치환하는 방법

fleabane의 이미지

안녕하세요

오전내내 끙끙 거리다가 계속 안풀려서 도움을 요청하고자 글을 올립니다.

하고 싶은 방식은 단순합니다. Version을 명기하는 Header 파일이 있습니다.

//Version.h
#define VERSION "0.1.2"

이 define을 특정 값으로 변경하는 Script를 작성하려고 합니다.
문제는 변경하려는 값("0.1.2")가 항상 동일한 값을 가지는것이 아니라 치환하려는 Target으로 사용할 수가 없어서
그 앞에 있는 VERSION을 Target으로 하여 그 뒤의 단어를 치환하려고 했는데 방법을 모르겠어서 일단
해당 line을 지워버리고 line에 새로운 문자열을 넣는 방식으로 시도를 해보았습니다.

DEFINE_STR="#define VERSION "\"$ver\"
echo $DEFINE_STR
 
#VERSION이 있는 라인을 통째로 지워버리고 DEFINE_STR의 내용울 삽입
sed '/VERSION/c '${DEFINE_STR}'' $FILEPATH/$FILENAME > $FILEPATH/tmp.h

위와 같이 해서 실행을 시키니

#define VERSION "0.2.3.9.23"
sed: can't read VERSION : No such file or directory
sed: can't read "0.2.3.9.23": No such file or directory

이렇게 Error가 발생합니다.
그래서 DEFINE_STR의 내용을

DEFINE_STR="#defineVERSION"\"$ver\"

처럼 바꾸면 문제가 없고요.

질문드리고 싶은 내용은
1. 공백이 포함되는 String을 입력하려면 어떻게 해야하는지?
2. 특정단어 뒤의 내용을 변경하려면 어떻게 해야하는지?

입니다.

고수분들의 답변 부탁드리겠습니다.

raymundo의 이미지

음... 따옴표만 좀 다르게 써주면 잘 되는 것 같은데요

(FILEPATH 변수는 귀찮아서 뺐습니다)

#!/bin/sh
ver="0.1.3"
FILENAME="version.h"
 
DEFINE_STR="#define VERSION \"$ver\""     # 여기 따옴표가 위치가 바뀌고
echo $DEFINE_STR
 
#VERSION이 있는 라인을 통째로 지워버리고 DEFINE_STR의 내용울 삽입
sed "/VERSION/c ${DEFINE_STR}" $FILENAME > tmp.h     # 여기도 그냥 큰 따옴표로

그리고 원하는 부분만 변경한다면, 이 경우 따옴표로 둘러싸인 부분만 바꾸도록 정규식을 써서

sed "/VERSION/s/\".*\"/\"$ver\"/" $FILENAME > tmp.h

이래도 잘 되는 듯 하고요.

좋은 하루 되세요!

fleabane의 이미지

6시간동안 삽질한 문제가 이렇게 쉽게 풀릴줄이야..
역시 야매로는 한계가 있네요.

답변주셔서 감사합니다!!

댓글 달기

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