I do not want:

$ cat file > dummy; $ cat header dummy > file

I want similar to the command below but to the beginning, not to the end:

$ cat header >> file
link|improve this question

3  
"appending to the begining of the file" is also known as "prepending". – FrustratedWithFormsDesigner Mar 23 '10 at 20:17
feedback

4 Answers

up vote 5 down vote accepted

You can't append to the beginning of a file without rewriting the file. The first way you gave is the correct way to do this.

link|improve this answer
feedback

You can't prepend to a file without reading all the contents of the file and writing a new file with your prepended text + contents of the file. Think of a file in Unix as a stream of bytes - it's easy to append to an end of a stream, but there is no easy operation to "rewind" the stream and write to it. Even a seek operation to the beginning of the file will overwrite the beginning of with any data you write.

link|improve this answer
feedback

Thanks to right searchterm!

echo "include .headers.java\n$(cat fileObject.java )" > fileObject.java

Then with a file:

echo "$(cat .headers.java)\n\n$(cat fileObject.java )" > fileObject.java
link|improve this answer
1  
That contains a race condition; sometimes (if not always), the shell will set up your stdout redirection, which will zero out the file, before the second "cat" command is complete. – pra Mar 24 '10 at 4:07
@pra: fixed? $ echo "$( read -t 1; cat one) \n\n $(cat two)" > one? – hhh May 12 at 14:21
feedback

This is easy to do in sed if you can embed the header string directly in the command:

$ sed -i "1iheader1,header2,header3"

Or if you really want to read it from a file, you can do so with bash's help:

$ sed -i "1i$(<header)" file

BEWARE that "-i" overwrites the input file with the results. If you want sed to make a backup, change it to "-i.bak" or similar, and of course always test first with sample data in a temp directory to be sure you understand what's going to happen before you apply to your real data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.