sed awk 질문 고수님들 부~탁해요.

jiphyunjeon의 이미지

안녕하세요.
인자에 관련된건데요.

예를 들어 만약
o.sh 화일 화일내용 echo $1

위형식에서 jiphyunjeon # o.sh 10.150.62.130
이렇게 명령이 이루어졌을때 10.150.62.130 이런 결과값이 나옵니다.
근데 이걸 sed 나 awk 을 써서 10.150.62 130 130 이런 값을 얻고 싶습니다.
몇가지 예

실행 o.sh 10.150.2.130
결과 10.150.2 130 130

실행 o.sh 10.15.160.2
결과 10.15.160 2 2

실행 o.sh 211.210.60.159
결과 211.210.60 159 159

어떤 아이피를 써두 마지막 아이피 앞에 점 빼고 마지막 아이피 두번 나오게 한깐 뛰어서.

위처럼 실행하면 위결과 처럼 나왔으면 합니다.
아니면 결과값을 다른 변수에 저장하던쥐

고수님들 부~탁해요.
그럼 님들 여름에 몸챙기셔야 합니다. 맛있는거 보신 많이 드세요.

무한포옹의 이미지

tr . " " | awk '{print $1"."$2"."$3,$4,$4}'

-------------------------------
== warning 대부분 틀린 얘기입니다 warning ===

see2002의 이미지

echo 10.5.160.22 | sed -e 's/.\([0-9]*\)$/ \1 \1/' 결과는... 10.5.160 22 22

cedar의 이미지

무한포옹 wrote:
tr . " " | awk '{print $1"."$2"."$3,$4,$4}'

참고로 tr을 쓰지 않고 하려면,
awk 'BEGIN {FS = "."} {print $1"."$2"."$3, $4, $4}'

또는
awk 'BEGIN {FS = "."; OFS = "."} {print $1, $2, $3" "$4" "$4}'

또는
awk 'BEGIN {FS = "."; OFS = "."; ORS = " "} {print $1, $2, $3; print $4; print $4}'

여기서 FS는 Field Seperator, OFS는 Output Field Seperator,
ORS는 Output Record Seperator의 약자입니다.

이 외에 printf를 사용하는 방법도 있습니다.

awk 'BEGIN {FS = "."} {printf "%d.%d.%d %d %d\n", $1, $2, $3, $4, $4}'
jiphyunjeon의 이미지

님들 정말 고수군요.
님 감사 합니다.
넘 유용하게 사용 했어요.
설명을 해주시면 더 좋은데 ㅋㅋ
그럼 안녕히 계세요.

나빌레라의 이미지

Quote:
님들 정말 고수군요.
님 감사 합니다.
넘 유용하게 사용 했어요.
설명을 해주시면 더 좋은데 ㅋㅋ
그럼 안녕히 계세요.

http://sunsite.ualberta.ca/Documentation/Gnu/gawk-3.0.6/html_chapter/gawk_toc.html

----------------------
얇은 사 하이얀 고깔은 고이 접어서 나빌레라

댓글 달기

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