2016-04-07 4 views

答えて

2

あなたはこのsedのを使用することができます。

sed '/start/,$s/test/edit/g' file 

bla bla test 
blabla 
start 
edit 
blabla 
start 
edit 

説明:

/start/,$  # find text from first occurrance of start till end 
s/test/edit/g # in the found text replace test by edit globally 
関連する問題