Falta de informações manuseando texto com Perl

0

Olá a todos, tenho trabalhado com este script:

    perl -F',\s+' -lane '
   @ARGV and $h{$F[1]}=$F[0],next;

   /^Device ID:\s+(\S+)/ && $h{$a=$1} .. /^$/ || eof() and do{
      /^$/ || eof() and $_ = "SN: $h{$a}" . ( eof() ? "" : "\n" );
   };

   print;
' dispositivoss.csv dispositivos.dat>dispositivoss.dat

Ele usa esses dois arquivos.

dispositivoss.csv:

serial_number,device_id,ip_address
FOC1518Z1G2, Arq_Laboratorios_EdifB, 148.000.000.248
FOC1216U136, Arquitectura_Dir, 148.000.000.252
FOC1352V3F3, Arq.245, 148.000.000.245
FDO1129Z9Z5, Barragan_3750, 148.000.000.254

aparelhos.dat:

Device ID: Arq_Laboratorios_EdifB
IP address: 148.000.000.248
Interface: FastEthernet0/48
Port ID (outgoing port): GigabitEthernet1/0/48

Device ID: SEP0c1167231895
IP address: 148.000.000.45
Interface: FastEthernet0/4
Port ID (outgoing port): Port 1

Device ID: Arquitectura_Dir
IP address: 148.000.000.252
Interface: GigabitEthernet0/2
Port ID (outgoing port): GigabitEthernet0/1

Device ID: ARQUITECTURA_01
IP address: 148.000.000.21
Interface: FastEthernet0/1
Port ID (outgoing port): FastEthernet0

Device ID: Arq.245
IP address: 148.000.000.245
Interface: FastEthernet0/42
Port ID (outgoing port): GigabitEthernet0/1

Device ID: Barragan_3750
IP address: 148.000.000.254
Interface: GigabitEthernet0/1
Port ID (outgoing port): GigabitEthernet1/0/3

tudo corre bem, mas no final, o script escreve SN over Port ID :

Device ID: Arq_Laboratorios_EdifB
IP address: 148.000.000.248
Interface: FastEthernet0/48
Port ID (outgoing port): GigabitEthernet1/0/48
SN: FOC1518Z1G2

Device ID: SEP0c1167231895
IP address: 148.000.000.45
Interface: FastEthernet0/4
Port ID (outgoing port): Port 1

Device ID: Arquitectura_Dir
IP address: 148.000.000.252
Interface: GigabitEthernet0/2
Port ID (outgoing port): GigabitEthernet0/1
SN: FOC1216U136

Device ID: ARQUITECTURA_01
IP address: 148.000.000.21
Interface: FastEthernet0/1
Port ID (outgoing port): FastEthernet0

Device ID: Arq.245
IP address: 148.000.000.245
Interface: FastEthernet0/42
Port ID (outgoing port): GigabitEthernet0/1
SN: FOC1352V3F3

Device ID: Barragan_3750
IP address: 148.000.000.254
Interface: GigabitEthernet0/1
SN: FDO1129Z9Z5

Como posso manter o Port ID ?, às vezes o dispositivos.dat tem apenas uma informação do dispositivo e o mesmo acontece.

Obrigado.

    
por Cesar Alejandro Villegas Yepez 05.04.2017 / 18:12

2 respostas

0

Altere a linha:

$_ = "SN: $h{$a}" . ( eof() ? "" : "\n" );

para

$_ .= (eof() ? "\n" : "") . "SN: $h{$a}" . ( eof() ? "" : "\n" );

    
por 05.04.2017 / 18:36
0
perl -F',\s+' -l -00nae '
   @ARGV and %h = (%h, reverse(/^(.*?),\s*(.*),/mg)),next;
   /^Device ID:\s+(\S+)/ && exists $h{$a=$1} && s/$/\nSN: $h{$a}/;
   print $_, eof() ? "": "\n";
' dispositivoss.csv dispositivos.dat > dispositivoss.dat

Quando você olha seus dados através de um parágrafo de cada vez.

    
por 05.04.2017 / 18:54