我需要編寫一個腳本,該腳本通過一堆文本文件並將某個字符串替換爲另一個字符串。另一個位於特定字符串下方兩行。就像這樣:根據另一行替換另一個字符串
some text
this is the first line (helloWorld).
this is the second line.
This is the third line (patternxxx).
more text
而且我想這樣的:
some text
this is the first line (helloxxxWorld).
this is the second line.
This is the third line (patternxxx).
more text
我在Linux下。
spenibus,thx編輯 – prologic
到目前爲止你嘗試了什麼?用'sed'或者在一個shell要求中做這件事情? –
任何解決方案都可以接受:)我只是給sed添加了標籤,因爲我認爲這將是一個解決方案。 – prologic