将给定行号从一个xml文件复制粘贴到另一个xml文件

时间:2015-04-26 14:44:21

标签: xml shell

如何将一系列行号从一个xml文件复制到另一个xml文件。

Ex - File1

<home>
<heading>
 hello
</heading>
<heading2>
world
</heading2>
.........
.........
</home>

文件2

<home>
<heading>
 this is a heading
</heading>
<heading2>
 this is a heading
</heading2>
.........
.........
</home>

O / P

<home>
<heading>
 hello
</heading>
<heading2>
world
</heading2>
.........
.........
</home>

让我们说我已经输入了第3行,下面的第6行将是我的输出。我只需要更改给定的特定行。 我的文件非常庞大,只是给出了一个示例任何建议?

1 个答案:

答案 0 :(得分:0)

了解您正在使用的内容,并可能更好地了解您的问题:

   $ pr -tn file1   >   file1.prt
   $ ... file2      >   file2.prt