Processando dois arquivos usando o awk


9

Eu li Comparando dois arquivos usando Unix e Awk . Isso é realmente interessante. Eu li e testei, mas não consigo entendê-lo completamente e usá-lo em outros casos.

Eu tenho dois arquivos file1tem um campo e o outro tem 16 campos. Eu quero ler os elementos de file1 e compará-los com o terceiro campo de file2. Se houve uma correspondência para cada elemento, somamos o valor do campo 5 em file2. Como um exemplo:

arquivo 1

1
2
3

arquivo 2

2 2 2 1 2
3 6 1 2 4 
4 1 1 2 3
6 3 3 3 4 

Para o elemento 1 em file1desejo adicionar valores no campo 5, em file2que o valor do campo 3 é 1. E faça o mesmo para o elemento 2 e 3 em file1. A saída para 1 é (3 + 4 = 7) e para 2 é 2 e para 3 é 4.

Não sei como escrever com awk.

Respostas:


20

Aqui está uma maneira. Eu o escrevi como um script awk para adicionar comentários:

#!/usr/local/bin/awk -f

{
    ## FNR is the line number of the current file, NR is the number of 
    ## lines that have been processed. If you only give one file to
    ## awk, FNR will always equal NR. If you give more than one file,
    ## FNR will go back to 1 when the next file is reached but NR
    ## will continue incrementing. Therefore, NR == FNR only while
    ## the first file is being processed.
    if(NR == FNR){
      ## If this is the first file, save the values of $1
      ## in the array n.
      n[$1] = 0
    }
    ## If we have moved on to the 2nd file
    else{
      ## If the 3rd field of the second file exists in
      ## the first file.
      if($3 in n){
        ## Add the value of the 5th field to the corresponding value
        ## of the n array.
        n[$3]+=$5
      }
    }
}
## The END{} block is executed after all files have been processed.
## This is useful since you may have more than one line whose 3rd
## field was specified in the first file so you don't want to print
## as you process the files.
END{
    ## For each element in the n array
    for (i in n){
    ## print the element itself and then its value
    print i,":",n[i];
    }
}

Você pode salvar isso como um arquivo, torná-lo executável e executá-lo da seguinte forma:

$ chmod a+x foo.awk
$ ./foo.awk file1 file2
1 : 7
2 : 2
3 : 4

Ou você pode condensar em uma linha:

awk '
     (NR == FNR){n[$1] = 0; next}
     {if($3 in n){n[$3]+=$5}}
     END{for (i in n){print i,":",n[i]} }' file1 file2

9
awk '
  NR == FNR {n[$3] += $5; next}
  {print $1 ": " n[$1]}' file2 file1

Faz algum trabalho extra somando campos não correspondentes.
Emmanuel

@Emmanuel, que ainda é um instruções awk por linha de file2, o que torna mais curto e mais rápido do que terdon de
Stéphane Chazelas

solução brilhante!
Ronald Pauffert
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.