0

我在许多不同的目录中有数百个 [大部分不同的] 文件,它们都有相同的 5 行文本,我需要经常编辑。例子:

/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

如何在所有 .txt 文件中查找和替换这 5 行文本?

4

2 回答 2

5

第 1 步:使用所有相关文件打开 vim。例如,使用 zshell,您可以执行以下操作:

vim **/*.txt

假设您想要的文件是当前树下任何位置的 .txt 文件。或者创建一个单行脚本来打开你需要的所有文件(看起来像:“vim dir1/file1 dir2/file2 ...”)

第 2 步:在 vim 中,执行:

:bufdo %s/this is line 1/this is the replacement for line 1/g | w 
:bufdo %s/this is line 2/this is the replacement for line 2/g | w 
...

bufdo 命令在所有打开的缓冲区中重复您的命令。在这里,执行查找和替换,然后执行写入。:help bufdo 获取更多信息。

于 2012-06-24T01:18:06.587 回答
0

如果您想编写脚本,特别是如果您的数字发生变化但必须保留在新行中:

for i in */*txt
do
    DIR=`dirname $i` # keep directory name somewhere
    FILE=`basename $i .txt` # remove .txt
    cat $i | sed 's/line \(.*\) this is line \(.*\)/NEW LINE with number \1 this is NEW LINE \2/' > $DIR/$FILE.new # replace line XX this is line YYY => NEW LINE XX this is NEW LINE YY, keeping the values XX and YY
    #mv -f $DIR/$FILE.new $i # uncomment this when you're sure you want to replace orig file
done

问候,

于 2012-06-24T16:15:43.007 回答