我有很多不同的目錄中的[大多數不同的]文件,它們都有相同的5行文本,我需要頻繁編輯。例如:如何通過vim在多個文件中添加/刪除相同的文本行?
/home/blah.txt
/home/hello/superman.txt
/home/hello/dreams.txt
/home/55/instruct.txt
and so on...
5行文字依次排列,但是在所有.txt文件的不同位置開始。例如:
在/home/blah.txt:
line 400 this is line 1
line 401 this is line 2
line 402 this is line 3
line 403 this is line 4
line 404 this is line 5
/home/hello/superman.txt:
line 23 this is line 1
line 24 this is line 2
line 25 this is line 3
line 26 this is line 4
line 27 this is line 5
我如何查找和替換在所有這些5行文字的.txt文件?
真棒感謝你們 – supyall