Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Hi I want to prepend text to a file. For example I want to add tasks to the beginning of a todo.txt file. I am aware of echo 'task goes here' >> todo.txt but that adds the line to the end of the file (not what I want).

share|improve this question

6 Answers

up vote 30 down vote accepted
echo 'task goes here' | cat - todo.txt > temp && mv temp todo.txt

or

sed -i '1s/^/task goes here\n/' todo.txt

or

sed -i '1itask goes here' todo.txt
share|improve this answer
the first one works great! would you mind explaining the logic? im not particularly sure how to interpret the syntax. – user479534 Feb 18 '11 at 4:24
2  
@user8347: Pipe (|) the message (echo '...') to cat which uses - (standard input) as the first file and todo.txt as the second. cat conCATenates multiple files. Send the output (>) to a file named temp. If there are no errors (&&) from cat then rename (mv) the temp file back to the original file (todo.txt). – Dennis Williamson Feb 18 '11 at 4:51

A simpler option in my opinion is :

echo -e 'task goes here\n$(cat todo.txt)' > todo.txt

This works because the command inside of $(...) is executed before the file is overwritten with > todo.txt

While the other answers work fine, I find this much easier to remember because I use echo and cat every day.

share|improve this answer
Agreed, this is great! – Emanuel Berg Jan 12 at 4:27
1  
I don't get $(...) executed at all. – SCL Feb 22 at 17:10

You can create a new, temporary file.

echo "new task" > new_todo.txt
cat todo.txt >> new_todo.txt
rm todo.txt
mv new_todo.txt todo.txt

You might also use sed or awk. But basically the same thing happens.

share|improve this answer
1  
Say you're out of disk space so that new_todo.txt gets written only partially. Your solution appears to lose the original file. – NPE Feb 17 '11 at 10:31
Who runs out of disk space? ;-) It's just a simple example. – Keith Feb 17 '11 at 10:33

If the text file is small enough to fit in memory, you don't have to create a temporary file to replace it with. You can load it all into memory and write it back out to the file.

echo "$(echo 'task goes here' | cat - todo.txt)" > todo.txt

It's impossible to add lines to the beginning of the file without over writing the whole file.

share|improve this answer
Just to ask the obvious question: Where's the character limit of shell variables? – nixda Jan 9 at 22:59
As far as I'm aware, it's only limited by the amount of memory available. I've filled up variables well over 100MB into memory. text=$(cat file). Be careful to only use text though, because shell variables aren't binary clean mywiki.wooledge.org/BashFAQ/058 – Rucent88 Jan 14 at 1:48

You cannot insert content at the beginning of a file. The only thing you can do is either replace existing content or append bytes after the current end of file.

Any solution to your question then requires a temporary file to be created (on memory or on disk) which will eventually overwrite the original file.

Beware not loosing data by preserving the original file while building the new one, should the file system happen to be full during the process. eg:

cat <(echo task go there) todo.txt > todo.txt.new && mv todo.txt.new todo.txt
share|improve this answer

The moreutils have a nice tool called sponge:

echo "task goes here" | cat - todo.txt | sponge todo.txt

It'll "soak up" STDIN and then write to the file, which means you don't have to worry about temporary files and moving them around.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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