sed 로 파일 편집 질문

zzaratra의 이미지

---------- test.txt ---------
linux {
Host: hellow.com
Address: 3.32.22.22
}
--------------------------------

위와 같은 파일의 Host 와 Address를 바꾸려고 하는데요...

cat test.txt |sed '/^linux/ {
    n
    /Host/ c\
     HOST: com.com
   n
    /Address/ c\
     ADDRESS: 45.34.34.33
}'

위 코드로 하면 Host 만 바뀌더라구요.. 두개 다 바꾸려면 어떻게 하나요..

pynoos의 이미지

sed 로 파이프 되어 나온 것을 다시 다른 sed 로 만드는 것은 어떨까요?

zzaratra의 이미지

Quote:

sed 로 파이프 되어 나온 것을 다시 다른 sed 로 만드는 것은 어떨까요?

예 저도 바빠서 그렀게 했는데요...

궁금한것이

n 하면 next 라인으로 넘어 가서 패턴을 찾을것 같은데..
첫번째.. n는 되는데.. 두번째 n 잘되지 않는것 같아서요...

물론

cat test.txt |sed '/^linux/ { 
    n 
    p   #print
   n 
    p
} '

했을때는
---------result
linux {
Host: hellow.com
Host: hellow.com
Address: 3.32.22.22
Address: 3.32.22.22
}
--------------
잘되는것 같구요..

두번째 next 한다음의 라인을 바꾸려면 안되는지 궁금..

Quote:

참고 : sed 에서
n (next line)
p (print)
c\ (change line)
vigor96의 이미지

The change command clears the pattern space, having the same effect on the pattern space as the delete command. No command following the change command in the script is applied.

c \

이 뒤에 있는 명령어는 실행하지 않는답니다

http://pcmarpxy.mine.nu/incoming/books/unix_bookshelf/sedawk/ch05_05.htm

impactbar의 이미지

답만 고려하면 이런 지저분한 정규식이 되는군요.

sed -e 's/Host: hellow\.com/HOST: com.com/' -e 's/Address: 3\.32\.22\.21/ADDRESS: 45.34.34.33/' test.txt

test.txt파일안에 단순히 저 문장만 있으면 별 문제 없으나

linux{
...
}

linux{
...
}

..
..

이렇게 되어 있으면 못쓰죠.

awk 에서 RS를 }로 바꿔서

필드 $4, $6 을 조작하면 한꺼번에 처리할 수 있을 겁니다.

즐거운 하루 되세요.

pynoos의 이미지

원래 소스에 오류가 있었던거 같애서.. 다시 작성해보았습니다...

linux가 발견되면, "}"까지 갈무리를 하면서 치환하는 형태로 가는 것이 옳을 것 같애서...

$ cat a.sed
/^linux/ { 
:grab
        /^}/ b end
        s/^Host:.*$/HOST: com.com/
        s/^Address:.*$/ADDRESS: 45.34.34.33/
        n       
        b grab  
:end
        n       
        p       
}

$ cat test.txt | sed -f a.sed
linux { 
HOST: com.com
ADDRESS: 45.34.34.33
} 

 
zzaratra의 이미지

c\ 다음에는 명령어를 쓸수 없다는 것도 알았고..
awk 를 써서 될수 있었는데. 하는 생각도 들고
label 사용해서 루프문을 돌리니까 괜찮네요..

답변에 감사 합니다.. 한가지 몰랐는데.. 열가지 얻은 기분이네요... ^^

댓글 달기

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