[완료]unix 문자열 합치기 질문입니다.

qkrskek의 이미지

unix 문자열 합치기 질문입니다.

A.txt 파일이

ab...c
------
AAA

de...f
gh...i
------
AAA1

jk...l
mn...o
pq...r
------
AAA2

이런 식으로 되어 있습니다.

이걸 요렇게 바꾸고 싶습니다.

ab...c AAA

de...f
gh...i AAA1

jk...l
mn...o
pq...r AAA2

요새 공부하고 있는 awk 와 sed 로 어떻게 해볼려고 했는데 잘 안되네요.

awk 와 sed 는 라인 처리 방식이라 그런가요? perl 을 배워야 할까요?

vim 의 Shift + j 로도 되는데, 처리 할 라인이 너무 많아서 힘드네요~!

고수님들의 좋은 답변 기다리겠습니다.

aero의 이미지

shell, sed , awk 짬뽕 노가다 할 바에야 Perl로

1번째 일반 프로그램 버젼
A.pl

#!/usr/bin/env perl
use strict;
use warnings;
 
my $text = do { local $/; <> };
$text =~ s/^([^\-\s].*?)\n(\-+)\n([^\-\s].*?)$/$1 $3/msg;
print $text;

결과
ab...c AAA
 
de...f
gh...i AAA1
 
jk...l
mn...o
pq...r AAA2

.
.
.
위 스크립트를 Perl one liner로 줄인 버젼
perl -00 -pne 's/^([^\-\s].*?)\n(\-+)\n([^\-\s].*?)$/$1 $3/msg' A.txt

결과
ab...c AAA
 
de...f
gh...i AAA1
 
jk...l
mn...o
pq...r AAA2

aero의 이미지

다시 생각해보니
패턴이 저렇게 정형적이다면 복잡한 정규식도 필요없이 이렇게도 가능하겠네요.

$ perl -00 -pne 's/\n------\n/ /g' A.txt
ab...c AAA
 
de...f
gh...i AAA1
 
jk...l
mn...o
pq...r AAA2
bacon의 이미지

awk로 하면

awk '{
        if ($0 ~ /^-+$/) {
                getline x; printf " %s\n", x; nobar=0;
        }
        else {
                if (nobar) printf "\n"; printf "%s", $0; nobar=1;
        }
}' A.txt

혹은
awk 'BEGIN { RS="\n-+\n"; ORS=" " }
{ print $0; }' A.txt

sed로 하면

sed -nr 'h
:again n
/^-+$/ {
        g
        N
        s/\n/ /
        p
        b skip
}
x
p
b again
:skip
' A.txt

bushi의 이미지

[bushi@rose net]$ sed -e :a -e '$!N;/\n------/N;s/\n------\n/ /;ta' -e 'P;D' A.txt 
ab...c AAA
 
de...f
gh...i AAA1
 
jk...l
mn...o
pq...r AAA2
[bushi@rose net]$ 

OTL

shockyhan의 이미지

vim A.txt

:%s/\n------\n/ /g
:wq

===========================================================================
Shocky Han
BIM Consultant, Certified Information Systems Auditor
Seoul, Korea.
===========================================================================

APRIL1024의 이미지

/^[^ ][^ ]*/{
	N
	/--*/!{
		P
		D
	}
	N
	s/\n.*\n/ /
}
qkrskek의 이미지

요새 개인적인 일 때문에 KLDP에 못 들어왔었는데

그새 많은 해결책들을 올려주셨네요!

감사합니다!내일 회사 얼른가서 해 봐야겠네요~!

댓글 달기

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