vote up 0 vote down star

I want to add a line at top of file say f1 using awk
Is there a better way than :
awk 'BEGIN{print "word"};{print $0}' f1 > aux;cp aux f1;\rm aux
does awk has something like -i option in sed.

flag

2 Answers

vote up 1 vote down check

Why not use sed - it would make the solution more straightforward

$sed -i.bak '1i\
word
' <filename>
link|flag
How can I echo newlines using the above script – Neeraj May 26 at 13:56
Just add them in - replace "word" with "work<cr>word" – Beano May 26 at 15:12
vote up 0 vote down

An alternate way to do this is
sed -i '1s:^: Word1\nWord2 :' file

link|flag

Your Answer

Get an OpenID
or

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