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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T16:18:22+00:00 2026-05-15T16:18:22+00:00

What is the order in which the test or [ expressions are evaluated in

  • 0

What is the order in which the test or [ expressions are evaluated in a bash script? Is it the same as the order in which they are written? Are they all evaluated?

In the following example:

if [ expr1 -a -n expr2 ]

will expr2 be evaluated if expr1 is false?

  • 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-15T16:18:23+00:00Added an answer on May 15, 2026 at 4:18 pm

    It’s been a long time since I used that particular syntax. Nowadays, I prefer:

    if [[ expr1 && -n expr2 ]]
    

    since I know that these are short-circuited. The bash man page specifically states:

    The && and || operators do not evaluate expression2 if the value of expression1 is sufficient to determine the return value of the entire conditional expression.

    It doesn’t appear to state clearly one way or the other for the [ and test variant (using -a).

    However, in the interests of furthering your knowledge and mine (and an indication as to why open source is a good thing), I went trolling through the bash source code.

    It turns out that it’s not short-circuited in that case. The particular pieces of code are (compressed a bit for readability):

    static int or() {
        int value, v2;
        value = and();
        if (pos < argc && argv[pos][0] == '-'
          && argv[pos][1] == 'o' && !argv[pos][2])
        {
            advance (0);
            v2 = or();
            return (value || v2);
        }
        return (value);
    }
    
    static int and() {
        int value, v2;
        value = term();
        if (pos < argc && argv[pos][0] == '-'
          && argv[pos][1] == 'a' && !argv[pos][2])
        {
            advance (0);
            v2 = and();
            return (value && v2);
        }
        return (value);
    }
    

    You can see in both those cases that it continues to interpret the expressions regardless of the state of the first expression.

    That was from bash 2.5 but I’ve just checked the 4.1 source as well and it hasn’t changed. Source was pulled straight from the horse’s mouth.

    So. bottom line: it appears that all sub-expressions are evaluated when using -a and -o with test or [.

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

Sidebar

Related Questions

Which of the following expressions will always precede left to right in all browsers(particularly
Should there be any specific order in which I should write the following for
Lets assume I have the following 3 entities: Customer,Order,Product which interact in the View
I have the following test which is failing: [TestCase] public void Should_order_numeric_suffix() { var
I want to verify the specific order in which characters to ensure that they
I have two entities say Customer and Order which exist on their own and
Does the order in which I set properties using the object initializer syntax get
Does the order in which parameters are passed to a stored procedure affect the
XmlElement has an Order attribute which you can use to specify the precise order
Let's say I have an Order table which has a FirstSalesPersonId field and a

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.