prepend to a file one liner shell?
- by elmarco
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)