vote up 0 vote down star

Alright, I know this is a simple question, but I can't seem to get this sed command to work. I'm trying to get a text file and replace one bit of it from placeholder text to a study code. The study code that it is going to replace it with is passed into the script using arguments when the script is first ran. The problem is, when I try to replace the placeholder text with the variable $study, it replaces it with a literally "$study".

Right now my arguments set like this:

export study=$1

export tag=$2

export mode=$3

export select=$4

My sed command looks like this:

sed -i.backup -e 's/thisisthestudycodereplacethiswiththestudycode/$study/' freq.spx

Is there some easy way of getting sed to not look at the literal $study, or would it be better at this point to do it another way?

flag

Remember that you're injecting $study into a sed command. Which means it needs to follow sed semantics. That means the delimiter (/) needs to be escaped with a backslash and several other metacharacters do too. Do NOT make the mistake of letting 'study' be arbitrary data or this is bugged. – lhunath May 13 at 7:20
Yeah, this script is going to be ran from another script which is called by a web page. Everything's going to be sanitized and checked by the time the input reaches this point. – Dropped.on.Japan May 21 at 15:27

2 Answers

vote up 8 vote down check

Use double quotes instead of single quotes.

Because ' quoting prevents shell variable expansions, and " quoting does not.

link|flag
Well, that did it. Thanks for the help! – Dropped.on.Japan May 12 at 18:43
Thanks for expanding the answer, @dmckee. – Paul Tomblin May 12 at 18:48
vote up 0 vote down

You probably won't run into this issue, but just in case...

Paul's answer is slightly suboptimal if $study might contain slashes or other characters with special meaning to sed.

mv freq.spx freq.spx.backup && \
    awk -v "study=$study" '{
        gsub(/thisisthestudycodereplacethiswiththestudycode/, study);
        print;
    }' freq.spx.backup > freq.spx

Although awkward (hah, pun!), this will always work regardless of $study's contents.

link|flag

Your Answer

Get an OpenID
or

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