通过终端向tsv文件添加头

时间:2014-06-19 13:26:37

标签: bash unix

我有很多无头的tsv文件,并希望为每个文件添加相同的标题。我怎么能通过终端或bash来做到这一点?

谢谢!

2 个答案:

答案 0 :(得分:3)

 sed -i '1i \here comes header' files

文件可以是glob exp,例如*.txt

答案 1 :(得分:0)

假设您在" head",tsv文件中有标题为" body",cat head body | tee body

怎么样?