awk - 如果[关闭]则更改行

awk - 如果[关闭]则更改行

如果仅存在直接两行,如何通过命令更改文件中的行

Line1
LineA
OldLine

Line1
LineA
NewLine

答案1

鉴于您非常通用的输入/输出,这里应该可以工作。

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

以单行形式。

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

一些例子。

$ 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

相关内容