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
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop














{ 33 comments… read them below or add one }
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
Even simpler would be:
sed -i ’1i Prepended line’ /tmp/newfile
+1 This works very nice and without using temporally files.
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 :)
Yes, that worked very nicely for me in Linux armel 2.6.32-rc5, sed is great but if you don’t use it regularly for a month it’s RTFM every time. Thanks.
Excellent suggestion with `sed` very good.
You can also use tac (cat backwards) to make it work. It will print the file from end to beginning.
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.
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
tac your_file prepended_text | tac > your_new_file
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
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.
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.
This is clever; even simpler, you can use
echo “prepend this” | cat – file.txt > newfile.txt
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
This can be done with sed in place (a pretty scary operation):
sed -i -e ‘s/^/PREFIX/’ file_with_lines_to_prefix.txt
Thanks, Q. I’ve attempted something similar in the past without success.
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):
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.
You’ll have to copy and paste the url, as the link parser cannot handle it.
‘prepend’ is a corollary to ‘append’, which is an English word.
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_prependedThis 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; }' <file2Edited by Admin – added formatting html tags
You could generate a patch file and use patch.
diff -u <(head myfile) mypatch; patch mypatch
That got completely mangled. Is there any way to protect my comments?
My finally correct version (may I request a preview feature?):
Let’s try again.
Another method is using ed:
A variation on this is:
echo “0r header.txt
w” | ed myfile.txt
Thanks, works well…
This is the best (sed) one-liner that I found for this problem:
sed -i -e ’1i TEXT’ FILE
Above command will insert string TEXT into the first line of the file FILE.
All credits goes to user unknown for the answer @ stackoverflow.
echo “MAINCARD_MSISDN,SUB_SOC,EXPIRY_DATE,S,U,” | cat – $spoolFile > /tmp/out && mv /tmp/out $spoolFile
that line above works for. problem is if a have to run the script more than once. it will insert the same line again.. Any way to stop it?
thanks
if ! head -n 1 “$spoolFile” | fgrep “$myString” &>/dev/null; then
echo “$myString” | cat – “$spoolFile” > /tmp/out && mv /tmp/out “$spoolFile”
fi