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
feedback
|
|
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. | |||
|
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. | |||
|
feedback
|
|
Thanks to right searchterm!
Then with a file:
| |||||||
feedback
|
|
This is easy to do in sed if you can embed the header string directly in the command:
Or if you really want to read it from a file, you can do so with bash's help:
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. | |||
|
feedback
|