Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2008-05-24 07:43:08
Size: 448
Editor: pgas
Comment: How do I prepend a text to a file (the opposite of >>)?
Revision 7 as of 2010-05-26 05:12:24
Size: 681
Editor: 99-190-22-125
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[Anchor(faq90)]] <<Anchor(faq90)>>
Line 3: Line 3:
You cannot do it with bash redirections alone; the opposite of `>>` does not exist....
Line 4: Line 5:
You cannot do it with bash redirections only, ie the opposite of >> does not exist. To do it in 2 commands with sed:
sed "1iTEXTTOPREPEND" filename > tmp
mv tmp filename
Line 6: Line 9:
You can use an editor: To insert content at the beginning of a file, you can use an editor:
Line 8: Line 11:
ed -s file << EOF
i
ex file << EOF
0a
Line 16: Line 19:
you can use things like: ex will also add a newline character to the end of the file if it's missing.

Or you can rewrite the file, using things like:
Line 22: Line 27:
or a gazillion of other solutions or lots of other solutions.

How do I prepend a text to a file (the opposite of >>)?

You cannot do it with bash redirections alone; the opposite of >> does not exist....

To do it in 2 commands with sed: sed "1iTEXTTOPREPEND" filename > tmp mv tmp filename

To insert content at the beginning of a file, you can use an editor:

ex file << EOF
0a
header line 1
header line 2
.
w
EOF

ex will also add a newline character to the end of the file if it's missing.

Or you can rewrite the file, using things like:

{ echo line; cat file ;} >tmpfile && mv tmpfile file
echo line | cat - file > tmpfile && mv tmpfile file

or lots of other solutions.

BashFAQ/090 (last edited 2017-02-14 19:48:12 by GreyCat)