acrescentar linhas depois de outros arquivos linha por linha

6

Anexar um arquivo,

011C0201.WAV
011C0202.WAV
011C0203.WAV
011C0204.WAV
011C0205.WAV

Depois de outro arquivo,

52 601
39 608
56 1016
39 416
65 335

o resultado é o seguinte, também dividir por guia

011C0201.WAV    52_601_011C0201
011C0202.WAV    39_608_011C0202
011C0203.WAV    56_1016_011C0203
011C0204.WAV    39_416_011C0204
011C0205.WAV    65_335_011C0205

Aqui está o que eu faço

awk '
NR==FNR { start=$1; end=$2; next}
{ print $0 start end }
' WSJ_310P_PC_16k.epd WSJ_310P_PC_16k.spt > tmp

Mas não está funcionando. O que estou fazendo errado?

    
por Lion Lai 24.11.2017 / 03:53

2 respostas

6

Que tal paste + awk ?

$ paste one another | 
    awk '{print $1, $2 "_" $3 "_" substr($1,1,length($1)-4)}' OFS='\t'
011C0201.WAV    52_601_011C0201
011C0202.WAV    39_608_011C0202
011C0203.WAV    56_1016_011C0203
011C0204.WAV    39_416_011C0204
011C0205.WAV    65_335_011C0205

Se você preferir fazer isso totalmente em awk :

awk 'NR==FNR {a[FNR]=$0; next} {print a[FNR], $1 "_" $2 "_" substr(a[FNR],1,length(a[FNR])-4)}' OFS='\t' one another
    
por 24.11.2017 / 04:05
5

Aqui está um usando awk

puro
awk '
    NR==FNR {a[NR]=$0; next}
    {
        split(a[FNR],b,".");
        printf "%s\t%s_%s_%s\n", a[FNR], $1, $2, b[1]
    }
' file1 file2
    
por 24.11.2017 / 04:28

Tags