标签: bash unix
我有很多无头的tsv文件,并希望为每个文件添加相同的标题。我怎么能通过终端或bash来做到这一点?
谢谢!
答案 0 :(得分:3)
sed -i '1i \here comes header' files
文件可以是glob exp,例如*.txt
*.txt
答案 1 :(得分:0)
假设您在" head",tsv文件中有标题为" body",cat head body | tee body
cat head body | tee body