awk - muda de linha se [fechado]

0

Como alterar uma linha em um arquivo por comando se apenas duas linhas imediatas existirem

DE

Line1
LineA
OldLine

PARA

Line1
LineA
NewLine
    
por Robin 02.01.2017 / 04:23

1 resposta

1

Considerando sua entrada / saída muito genérica, aqui está algo que deve funcionar.

awk '{ 
        if (f == 2) 
        {
           print "NewLine"
           next
        } else if (/Line1/) 
        { 
           f=1 
        } else if (f == 1 && /LineA/)
        {
           f=2
        } else 
        { 
           f=0 
        } 
        print 
     }'

Na forma de oneliner.

awk '{if (f == 2) { print "NewLine"; next } else if (/Line1/) { f=1 } else if (f == 1 && /LineA/) { f=2 } else { f=0 } print }'

Alguns exemplos.

$ echo -en 'Line1\nLineA\nOldLine'|awk '{if (f == 2) { print "NewLine"; next } else if (/Line1/) { f=1 } else if (f == 1 && /LineA/) { f=2 } else { f=0 } print }'
Line1
LineA
NewLine

$ echo -en 'Line1\nLineB\nOldLine'|awk '{if (f == 2) { print "NewLine"; next } else if (/Line1/) { f=1 } else if (f == 1 && /LineA/) { f=2 } else { f=0 } print }'
Line1
LineB
OldLine
    
por 02.01.2017 / 05:21

Tags