1

我正在尝试将标题和预告片添加到一个非常大的文件中。

到目前为止,我已经尝试过 sed 和 awk。Sed 我无法通过在线示例在 Mac 上工作。awk 我要去上班,但只显示到屏幕输出。

使用本网站作为参考。

http://www.theunixschool.com/2011/03/different-ways-to-add-header-and.html

使用 AWk 我如何真正得到它来更新我的文件。也接受其他建议。

4

2 回答 2

4
cat header big_file footer > tmp_file && mv tmp_file big_file
于 2013-02-14T18:19:23.407 回答
1

这适用于 unix/linux:

cat headerfile myfile trailerfile > newfile
于 2013-02-14T18:27:08.853 回答