vote up 0 vote down star

I have a problem replacing a command inside of a script, the offending line in the script looks like this:

mail -s "$(hostname) on $(date)"

It should be replaced with a line like this:

nail -r "sender@domain.com" -s "Subject" -S smtp=255.255.255.255

But I can't get sed to do a replacement :) I wrote a small script for that purpose:

#!/bin/bash

old="mail -s \"\$(hostname) on \$(date)"
new="nail -r \"sender@domain.com\" -s \"Subject\" -S smtp=255.255.255.255"

sed -i 's|$old|$new|' script.sh

Does anyone have any advice?

flag

3 Answers

vote up 1 vote down check
sed -i "s|$old|$new|" script.sh

Note the double quotes.

link|flag
Thank you for pointing out this stupid mistake :) I've been using sed to replace and append double quotes where needed and got tired of escaping them all the time so i just started to put in single quotes and forgot about it :) – f10bit Sep 17 at 12:23
vote up 1 vote down

Sed by default does not do in Place editing. If you are using gnu Sed try providing the in place flag -ikbak

link|flag
The OP has the -i option in place. The only difference is that yours causes a backup to be created with the (unusual?) suffix "kbak". – Dennis Williamson Sep 17 at 13:04
yes just was wondering if he's using gnu sed – ennuikiller Sep 17 at 15:03
vote up 0 vote down

Better use ed!

http://bash-hackers.org/wiki/doku.php?id=howto%3Aedit-ed

link|flag

Your Answer

Get an OpenID
or

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