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 divida por tabulação
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 isto não está funcionando. O que estou fazendo errado?