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 9058285
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T14:41:15+00:00 2026-06-16T14:41:15+00:00

Possible Duplicate: Ternary operator (?:) in Bash If this were AS3 or Java, I

  • 0

Possible Duplicate:
Ternary operator (?:) in Bash

If this were AS3 or Java, I would do the following:

fileName = dirName + "/" + (useDefault ? defaultName : customName) + ".txt";

But in shell, that seems needlessly complicated, requiring several lines of code, as well as quite a bit of repeated code.

if [ $useDefault ]; then
    fileName="$dirName/$defaultName.txt"
else
    fileName="$dirName/$customName.txt"
fi

You could compress that all into one line, but that sacrifices clarity immensely.

Is there any better way of writing an inline if with variable assignment in shell?

  • 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-06-16T14:41:16+00:00Added an answer on June 16, 2026 at 2:41 pm

    There is no ?: conditional operator in the shell, but you could make the code a little less redundant like this:

    if [ $useDefault ]; then
        tmpname="$defaultName"
    else
        tmpname="$customName"
    fi
    fileName="$dirName/$tmpname.txt"
    

    Or you could write your own shell function that acts like the ?: operator:

    cond() {
        if [ "$1" ] ; then
            echo "$2"
        else
            echo "$3"
        fi
    }
    
    fileName="$dirname/$(cond "$useDefault" "$defaultName" "$customName").txt"
    

    though that’s probably overkill (and it evaluates all three arguments).

    Thanks to Gordon Davisson for pointing out in comments that quotes nest within $(...).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: NullPointerException through auto-boxing-behavior of Java ternary operator The following code uses simple
Possible Duplicate: Ternary conditional operator in Python I have this problem and have no
Possible Duplicate: Python Ternary Operator If Python would support the (x ? a :
Possible Duplicate: Nullable types and the ternary operator. Why won’t this work? This is
Possible Duplicate: Nullable types and the ternary operator. Why won’t this work? for example:
Possible Duplicate: Java conditional operator ?: result type NullPointerException through auto-boxing-behavior of Java ternary
Possible Duplicate: Ternary conditional operator in Python I've programmed in Java for quite sometime,
Possible Duplicate: Type result with Ternary operator in C# I ran into this scenario,
Possible Duplicate: Benefits of using the conditional ?: (ternary) operator hi, I'm viewing this
Possible Duplicate: Why would you use the ternary operator without assigning a value for

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.