cria uma tabela estruturada

0

Eu tenho um arquivo que é o seguinte

Tran No       Date        Vchr No                Debit                         Credit

1239       05/06/2015   115                     750.00                       .00
instal     A Roy                        Sr/Ag/Pol No : 33333
being the exp towards tour
neft ac no 00088888

1295       10/06/2015    123                    400.00                        .00
instal    P Paul                        Sr/Ag/Pol No :54322
being the mobile bill payment
neft zc no 00222222

Minha saída desejada é a seguinte:

1239       05/06/2015     115                      750.00                       .00            A Roy        33333      being the exp towards tour
1295       10/06/2015      123                      400.00                      .00            P Paul       54322      Being the mobile payment

Posso alcançar o resultado usando awk ?

    
por user133748 11.09.2015 / 16:18

1 resposta

2

De acordo com a data da amostra introduzida, é muito fácil fazer a tarefa com sed

sed -n '/^12[0-9][0-9]/{N;N;s^\n\|\s*Sr/Ag/Pol\s*No\s*:\s*\|\s\s\+^\t^gp;}' file

ou, se preferir, com awk :

awk '/^12/,/:/{sub("\s*Sr/Ag/Pol No :\s*","\t"); NF=NF; printf $0" "}/being/' OFS='\t' file
    
por 11.09.2015 / 16:55

Tags