awk 질문 올립니다.

사과먹는 곰돌이의 이미지

awk 사용하시는 분들께 질문 올립니다. 독학으로 이제 막 꾸역꾸역 배우기 시작한 프로그래밍 생초보인데 아직 실력이 원시적이라 파일 다루기가 녹록치 않네요.

두 파일을 비교하고 싶습니다.

file1.txt
a - 0 32 78 * 0 0 apbal
a - 0 2 829 * 0 0 duitbal
b - 0 17 72 * 0 0 kory
c - 0 34 472 * 0 0 gomgwui
d - 0 23 45 * 0 0 baetaeji
d - 0 28 34 * 0 0 balbadak
e - 0 2 679 * 0 0 gombal

file2.txt
a 34 78
b 392 678
c 27 92

이런 식의 파일들이고요, 보시다시피 두 파일의 행 수와 열 수가 다릅니다.
원하는 처리는
*file2.txt의 1열과 일치하는 1열을 갖는 file1.txt행 중에서
file2.txt의 2열이나 3열의 값이 file1.txt의 4열과 5열의 값들 사이에 위치하는 행을 찾아 해당 행 9열의 문자열들을 출력하는 것입니다.
대략 아래와 같이 적어보았는데 아직 이상태로는 출력은 안되네요.

cat file1.txt | awk -F"\t"'{
while (getline file2val < "file2.txt"){
split(file2val, clmn, "\t")
if(clmn[1] == $1 && clmn[2] >= $4 && clmn[2] <= $5){
print $9;
}elseif(clmn[1] == $1 && clmn[3] >= $4 && clmn[3] <= $5){
print $9;
}
}
close("file2.txt")
}'

여기에 수정을 가해서 실행을 시킬 수 있을까요?

백연구원의 이미지

일단 작성자분 코드 최대한 안고치는 방향입니다.

# cat file1.txt | awk '{
> while (getline file2val < "file2.txt"){
> split(file2val, clmn, "\t")
> if(clmn[1] == $1 && clmn[2] >= $4 && clmn[2] <= $5){
> print $9;
> }else if(clmn[1] == $1 && clmn[3] >= $4 && clmn[3] <= $5){
> print $9;
> }
> }
> close("file2.txt")
> }'
apbal
duitbal
gomgwui
#


소곤소곤

slomo의 이미지

그렇게 하시면 file1.txt의 매행을 읽을 때마다 file2.txt 전체를 읽게 됩니다. file2.txt를 미리 읽어서 배열로 만들어 놓는 것이 좋습니다.

# prog.awk
BEGIN {
    FS = "\t";
    while(getline < "file2.txt") {
        first[$1] = $2;
        second[$1] = $3;
    }
}
{
    key = $1;
    lower = $4;
    upper = $5;
    name = $9;
    if ( (first[key] >= lower && first[key] <= upper ) || 
         (second[key] >= lower && second[key] <= upper)) {
        print name;
    }
}
$ gawk -f prog.awk file1.txt
apbal
duitbal
gomgwui

====
No one asks you for change or directions.
-- Slo-Mo, J. Krokidas

댓글 달기

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