Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 556137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:53:17+00:00 2026-05-13T11:53:17+00:00

I have a whole bunch of tests on variables in a bash (3.00) shell

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T11:53:17+00:00Added an answer on May 13, 2026 at 11:53 am

    Very close to what you posted, actually. You can use something called Bash parameter expansion to accomplish this.

    To get the assigned value, or default if it’s missing:

    FOO="${VARIABLE:-default}"  # FOO will be assigned 'default' value if VARIABLE not set or null.
    # The value of VARIABLE remains untouched.
    

    To do the same, as well as assign default to VARIABLE:

    FOO="${VARIABLE:=default}"  # If VARIABLE not set or null, set it's value to 'default'. 
    # Then that value will be assigned to FOO
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a whole bunch of Unit tests and coded UI Tests setup in
I have a whole bunch of unit tests written in MbUnit and I would
I have whole bunch of <div class=productlistname><a href=#>The Text!</a></div> . What I want to
I have a whole bunch of projects which I want to reuse between the
I have a whole bunch of mavenised projects, and I want to check that
I have a whole bunch of data from a series of rounds. Specifically, I
If I have a whole bunch of requires in my main app file: require
In C++, say you have a whole bunch of objects that you want to
I have a DTO that has a whole bunch of members. I was wondering
I have some text files with a whole bunch of info in them. Most

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.