패턴과 일치하는 줄을 다른 파일의 줄로 순차적으로 교체

패턴과 일치하는 줄을 다른 파일의 줄로 순차적으로 교체

예를 들어 다음과 같이 한 파일의 패턴과 일치하는 줄을 다른 파일에서 순차적으로 바꾸고 싶습니다.

파일 1.txt:

aaaaaa
bbbbbb
!! 1234
!! 4567
ccccc
ddddd
!! 1111

!!로 시작하는 줄을 다음 파일로 바꾸는 것을 좋아합니다.

파일 2.txt:

first line
second line
third line

따라서 결과는 다음과 같아야 합니다.

aaaaaa
bbbbbb
first line
second line
ccccc
ddddd
third line

답변1

쉽게 할 수 있다

awk '
    /^!!/{                    #for line stared with `!!`
        getline <"file2.txt"  #read 1 line from outer file into $0 
    }
    1                         #alias for `print $0`
    ' file1.txt

다른 버전

awk '
    NR == FNR{         #for lines in first file
        S[NR] = $0     #put line in array `S` with row number as index 
        next           #starts script from the beginning
    }
    /^!!/{             #for line stared with `!!`
        $0=S[++count]  #replace line by corresponded array element
    }
    1                  #alias for `print $0`
    ' file2.txt file1.txt

답변2

GNU sed비슷 하다awk+getline

$ sed -e '/^!!/{R file2.txt' -e 'd}' file1.txt
aaaaaa
bbbbbb
first line
second line
ccccc
ddddd
third line
  • R한 번에 한 줄씩 주어진다
  • 순서가 중요해요 처음, R마지막d


그리고perl

$ < file2.txt perl -pe '$_ = <STDIN> if /^!!/' file1.txt
aaaaaa
bbbbbb
first line
second line
ccccc
ddddd
third line
  • <STDIN>파일 핸들을 사용하여 읽을 수 있도록 대체 행이 포함된 파일을 표준 입력으로 전달합니다.
  • 일치하는 줄이 발견되면 $_표준 입력의 줄로 바꿉니다.

관련 정보