BASH: Prepend A Text / Lines To a File

by Vivek Gite on August 23, 2008 · 28 comments

Q. I can append text to a file using >> operator but how do I prepend a text to a file? I want the opposit of >> operation?

A. There is no prepend operator, however there are many ways to do the same. You can use ed, sed, perl, awk and so on.

Prepend a text using a temporary file

Here is simple solution using a temporary file to prepend text:

echo 'line 1' > /tmp/newfile
echo 'line 2' >> /tmp/newfile
cat yourfile >> /tmp/newfile
cp /tmp/newfile yourfile

Here is one line solution:

echo "text"|cat - yourfile > /tmp/out && mv /tmp/out yourfile

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 28 comments… read them below or add one }

1 Sean August 23, 2008

perl -p -i -e ‘BEGIN { print “First line\n” }’ originalfile

should work without needing an explicit temp file

If you’re going to use these commands in a script, though, “man mktemp” first.

Sean

Reply

2 Professor Fapsanders August 23, 2008

Even simpler would be:
sed -i ’1i Prepended line’ /tmp/newfile

Reply

3 A.Lepe July 28, 2011

+1 This works very nice and without using temporally files.

Reply

4 nikolocalhost August 1, 2011

That works on linux but not in solaris (unless you install gsed package), because de solaris sed command doesnt support “in place option” -i.

In that case

echo “text”|cat – yourfile > /tmp/out && mv /tmp/out yourfile

works for me

Thanks for help :)

Reply

5 mike August 24, 2008

You can also use tac (cat backwards) to make it work. It will print the file from end to beginning.

Reply

6 bc December 29, 2008

Thread’s old, I know, but I wanted to note that tac — at least in the version I have in Cygwin, is not fully “cat in reverse” alas.

As you say, it’ll print from the end — but it won’t take an argument like this:

tac >> somefilethatyouwanttoPREPENDtextto

Just thought I’d note that for others who might be searching the same issue as the OP.
This seems like such an obviously useful utility it’s unbelievable what a pita it is.

Reply

7 nairbv August 17, 2009

I tried the perl command (same one suggested to me by someone on IRC) and it didn’t work. It just printed to stdout and left the file unchanged. I’m kind of surprised two different people suggested the exact same non-working command, so I must be doing something wrong. What could I be doing wrong though??

I like the sed command, but I needed to add more than one line (and my text contained special characters).

This worked for me:

sed -i ’1{h; r headerfile.txt
D;}
2{x; G; }
‘ filetoedit.txt

I’m not even really sure how it works, I just combined bits of code from a couple of random scripts I saw elsewhere. I should learn more sed :-P

this also worked:

for FILE in `find . -iname “*.php”`
do
cat header.php | cat – $FILE > /tmp/mytmpfile && mv /tmp/mytmpfile $FILE
done

Reply

8 Victor July 21, 2010

tac your_file prepended_text | tac > your_new_file

Reply

9 SilversleevesX September 18, 2010

tac does not add a damn thing.
Given this command:
tac biglist.txt “thisistext” > biglist5.txt
– I get the error
tac: cannot open `thisistext’ for reading: No such file or directory.
Considering it’s a close cousin of cat, I shouldn’t expect it to do any more, logically.
Please do the newbie world a favour and remove any references to tac in this thread.

BZT

Reply

10 jbo5112 October 12, 2010

You need to put your prepend data into the file “thisistext”. Also, unless you want your file to come out upside down, you’ll have to pipe the output from the first tac into a second tac before redirecting to a file.

Reply

11 jbo5112 October 12, 2010

With a little creative use of shell commands, you can avoid needing a second input file. Passing ‘-’ as an argument tells most tools to use standard input or output (whichever applies) as a file.

echo “my_prepend_text_goes_here” | tac biglist.txt – | tac > biglist5.txt

There are a couple of tricks where you can avoid needing to create biglist5.txt in the process (storing results to a variable or using “tee” to write your output), but I can’t find anything that will work on large files.

Reply

12 Ladd June 17, 2011

This is clever; even simpler, you can use
echo “prepend this” | cat – file.txt > newfile.txt

Reply

13 SilversleevesX September 18, 2010

How about a command or script to add the same text to every line OF a file, not just to the file itself???

Believe it or not
bash prepend same text to beginning of all lines of file
does not have an exact match on Google. Ask.com and Yahoo! were sloppy with it (read:inexact and wide of the mark ultimately). Just more proof to my assertion that the world is going stupid.

BZT

Reply

14 Q September 21, 2010

This can be done with sed in place (a pretty scary operation):

sed -i -e ‘s/^/PREFIX/’ file_with_lines_to_prefix.txt

Reply

15 Mark Stafford February 8, 2011

Thanks, Q. I’ve attempted something similar in the past without success.

Reply

16 Matt January 21, 2011

This perl one-liner will prefix (not prepend, which isn’t a word) a line to the beginning of a file.

perl -pi -e ‘print “Put before first line\n” if $. == 1′ inFile.txt

(from the perl FAQ):

Reply

17 jbo5112 January 25, 2011

You got gypped on your dictionary if it doesn’t have prepend.
http://www.dict.org/bin/Dict?Form=Dict2&Database=*&Query=prepend

It’s also in the Merriam-Webster Unabridged Dictionary, which is more authoritative at the cost of a subscription, and it’s even a command in the popular jQuery javascript library. However, I agree prefix would be more proper English if one cares and has an educated audience that would not be confused.

Reply

18 jbo5112 January 25, 2011

You’ll have to copy and paste the url, as the link parser cannot handle it.

Reply

19 Ladd June 17, 2011

‘prepend’ is a corollary to ‘append’, which is an English word.

Reply

20 niemand July 13, 2011

Ugh, my original message totally got garbled…

What the above SHOULD look like:

From http://sed.sourceforge.net/grabbag/tutorials/sedfaq.txt:

sed '1{h; r file_to_prepend.txt
D; }
2{x; G; }' < file_to_be_prepended

This can be used to insert a file into any line but the last one into a second file. For instance, to insert file1 into file2 at line 10:

sed '10{h; r file1
D; }
11{x; G; }' <file2

Edited by Admin – added formatting html tags

Reply

21 jbo5112 July 29, 2011

You could generate a patch file and use patch.

diff -u <(head myfile) mypatch; patch mypatch

Reply

22 jbo5112 July 29, 2011

That got completely mangled. Is there any way to protect my comments?

Reply

23 jbo5112 July 29, 2011

My finally correct version (may I request a preview feature?):

diff -u <(head myfile) <(echo -e "my data goes here and ends at the period.\n`head myfile`") > mypatch; patch mypatch

Reply

24 jbo5112 July 29, 2011

Let’s try again.

diff -u <(head myfile)  mypatch; patch mypatch

Reply

25 jbo5112 July 29, 2011
diff -u <(head -n 50 votd) <(echo -e "my data goes here and ends at the period.\n`head -n 50 votd`") > mypatch; patch mypatch

Reply

26 jbo5112 July 29, 2011

Another method is using ed:

echo -e “0a\nmy data goes here and ends at the period.\n.\n,wq” | ed myfile

Reply

27 niemand September 10, 2011

A variation on this is:

echo “0r header.txt
w” | ed myfile.txt

Reply

28 Muhammad El-Sergani October 14, 2011

Thanks, works well…

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 11 + 15 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: