I'm trying to write a bash script, and I'm running into a quoting problem.

The end result I'm after is for my script to call:

lwp-request -U -e -H "Range: bytes=20-30"

My script file looks like:

CLIENT=lwp-request
REQ_HDRS=-U
RSP_HDRS=-e
RANGE="-H "Range: bytes=20-30""   # Obviously can't do nested quotes here
${CLIENT} ${REQ_HDRS} ${RSP_HDRS} ${RANGE}

I know I can't use nested-quotes. But how can I accomplish this?

link|improve this question

feedback

migrated from superuser.com Jan 6 at 11:30

This question came from our site for computer enthusiasts and power users.

2 Answers

up vote 3 down vote accepted

Normally, you could escape the inner quotes with \:

RANGE="-H \"Range: bytes=20-30\""

But this won't work when running a command – unless you put eval before the whole thing:

RANGE="-H \"Range: bytes=20-30\""
eval $CLIENT $REQ_HDRS $RSP_HDRS $RANGE

However, since you're using bash, not sh, you can put separate arguments in arrays:

RANGE=(-H "Range: bytes=20-30")
$CLIENT $REQ_HDRS $RSP_HDRS "${RANGE[@]}"

This can be extended to:

ARGS=(
    -U                             # Request headers
    -e                             # Response headers
    -H "Range: bytes=20-30"        # Range
)
$CLIENT "${ARGS[@]}"
link|improve this answer
Backslash escaping and using eval fixed it for me. Thanks! I'll look into converting to an array of arguments later. – abelenky Dec 29 '11 at 21:26
1  
@abelenky: please don't use eval, it's full of traps for the unwary. The array approach is far more reliable. – Gordon Davisson Dec 30 '11 at 2:39
feedback

You can use the fact that both '' and "" can be used for strings.
So you can do things like this:

x='Say "hi"'
y="What's up?"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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