我正在尝试将标题和预告片添加到一个非常大的文件中。
到目前为止,我尝试过sed和awk。 Sed我无法在Mac上通过在线示例开始工作。我已经去上班但只显示屏幕输出。
使用此网站作为参考。
http://www.theunixschool.com/2011/03/different-ways-to-add-header-and.html
使用AWk我如何实际更新我的文件。也可以接受其他建议。
答案 0 :(得分:4)
cat header big_file footer > tmp_file && mv tmp_file big_file
答案 1 :(得分:1)
这适用于unix / linux:
cat headerfile myfile trailerfile > newfile