Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I add a string after each line in a file using bash? Can it be done using the sed command, if so how?

share|improve this question

3 Answers

up vote 12 down vote accepted

If your sed allows in place editing via the -i parameter:

sed -e 's/$/string after each line/' -i filename

If not, you have to make a temporary file:

typeset TMP_FILE=$( mktemp )

touch "${TMP_FILE}"
cp -p filename "${TMP_FILE}"
sed -e 's/$/string after each line/' "${TMP_FILE}" > filename

Yours,
Tom

share|improve this answer
Thanks, it worked! – Jason Volkoz May 19 '10 at 22:03
Why do you touch the temporary file? And I would make the sed command conditional on the success of the cp or the original could be lost. – Dennis Williamson May 20 '10 at 0:19
I touched the file to quickly reserve the temporary name. This may not be needed. I think you are right about making the sed command conditional on the success of the cp. Why not edit the code to make that fix. I won't mind a bit! Yours, Tom – Tom DeGisi May 20 '10 at 0:50
What about adding a string before a line? – Oxwivi Jan 24 '12 at 10:26
1  
@Oxwivi: sed -e 's/^/string after each line/' -i filename $ means end-of-line. ^ means beginning of line. – Tom DeGisi Feb 28 '12 at 15:43

If you have it, the lam (laminate) utility can do it, for example:

$ lam filename -s "string after each line"
share|improve this answer

Sed is a little ugly, you could do it elegantly like so:

hendry@i7 tmp$ cat foo 
bar
candy
car
hendry@i7 tmp$ for i in `cat foo`; do echo ${i}bar; done
barbar
candybar
carbar
share|improve this answer
Fails for files with more lines than the shell's maximum argument limit. Try: cat foo | while read a ; do echo ${a}bar ; done or something like that instead; it's a suitable replacement for for in in most cases. – alex May 19 '10 at 22:36
It also fails for lines with spaces in them. – Dennis Williamson May 20 '10 at 0:18
Er, no it doesn't fail Dennis. shell's maximum argument limit? Crikey you are being pendantic. – hendry May 20 '10 at 10:16
Yes it does: $ cat foo foo bar baz alex@armitage:~$ for i in cat foo; do echo ${i}bar; done foobar barbar bazbar but after some tests, I might be wrong about my reasoning, but Dennis is right – alex May 20 '10 at 21:36
foo in my case is a file. You would not get problems with spaces and it would just iterate on line endings in the file. – hendry May 24 '10 at 9:33

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.