Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a whole bunch of tests on variables in a bash (3.00) shell script where if the variable is not set, then it assigns a default, e.g.:

if [ -z "${VARIABLE}" ]; then 
    FOO='default'
else 
    FOO=${VARIABLE}
fi

I seem to recall there's some syntax to doing this in one line, something resembling a ternary operator, e.g.:

FOO=${ ${VARIABLE} : 'default' }

(though I know that won't work...)

am i crazy, or does something like that exist?

Thanks!

share|improve this question

4 Answers

up vote 9 down vote accepted

Very close to what you posted, actually:

FOO=${VARIABLE:-default}

Or, which will assign to VARIABLE as well:

FOO=${VARIABLE:=default}
share|improve this answer
bingo! works like a charm – eqbridges Jan 6 '10 at 15:08
If I wanted to find this in the documentation, what would a google for? Googling with special characters like ${:-} isn't very easy. – solarmist Apr 24 at 18:34

For command line arguments:

VARIABLE=${1:-DEFAULTVALUE}    

#set VARIABLE with the value of 1st Arg to the script,
#If 1st arg is not entered, set it to DEFAULTVALUE
share|improve this answer

Then there's the way of expressing your 'if' construct more tersely:

FOO='default'
[ -n "${VARIABLE}" ] && FOO=${VARIABLE}
share|improve this answer
this is good for x-compatibility with earlier shells – eqbridges Jan 7 '10 at 10:27

see here under 3.5.3(shell parameter expansion)

so in your case

${VARIABLE:−default}
share|improve this answer

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.