This is probably a complex solution.
I am looking for a simple operator like ">>", but for prepending.
I am afraid it does not exist. I'll have to do something like
mv $F tmp cat header tmp > $F
Anything smarter? (I am not fond of tmp files)
|
1
|
This is probably a complex solution. I am looking for a simple operator like ">>", but for prepending. I am afraid it does not exist. I'll have to do something like mv $F tmp cat header tmp > $F Anything smarter? (I am not fond of tmp files)
|
|||
|
|
|
|
No temp files.
Creating another file descriptor for the file ( Passing the prependage as a variable to awk ( |
|||
|
|
|
|
This still uses a temp file, but at least it is on one line:
|
||
|
|
|
|
Not possible without a temp file, but here goes a oneliner
You can use other tools such as ed or perl to do it without temp files. |
|||
|
|
|
|
If you're scripting in BASH, actually, you can just issue: cat - yourfile /tmp/out && mv /tmp/out yourfile That's actually in the Complex Example you yourself posted in your own question. |
||
|
|
|
|
It may be worth noting that it often is a good idea to safely generate the temporary file using a utility like mktemp, at least if the script will ever be executed with root privileges. You could for example do the following (again in bash):
|
||
|
|
|
|
When you start trying to do things that become difficult in shell-script, I would strongly suggest looking into rewriting the script in a "proper" scripting language (Python/Perl/Ruby/etc) As for prepending a line to a file, it's not possible to do this via piping, as when you do anything like There may be a way to do it via awk, or similar, but if you have to use shell-script, I think a temp file is by far the easiest(/only?) way.. |
||
|
|
|
|
assuming that the file you want to edit is my.txt
And the file you want to prepend is header
Be sure to have a final blank line in the header file.
You end up with
As far as I know this only works in 'bash'. |
||
|
|