sed: insira uma linha em uma determinada posição

Eu estava apenas olhando em volta, mas não encontrei nada que funcionasse para mim. Eu gostaria de inserir uma nova linha (basicamente uma linha de tabela html) no topo das outras linhas.

<table id="tfhover" class="tftable" border="1">
<tr><th>HEADER1</th><th>HEADER2</th><th>HEADER3</th><th>HEADER4</th></tr>
<tr><td>Row:1 Cell:1</td><td>Row:1 Cell:2</td><td>Row:1 Cell:3</td><td>Row:1 Cell:4</td></tr>
</table>

Então, existe alguém que pode me sugerir um cmd sed que irá inserir um novo:

<tr><td>Row:1 Cell:1</td><td>Row:1 Cell:2</td><td>Row:1 Cell:3</td><td>Row:1 Cell:4</td>

logo abaixo dos CABEÇALHEIROS?

Obrigado!

questionAnswers(1)

yourAnswerToTheQuestion