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

  • Home
  • SEARCH
  • 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 6104385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:50:10+00:00 2026-05-23T13:50:10+00:00

I read in tldp.com that if [ $condition1 ] && [ $condition2 ] Same

  • 0

I read in tldp.com that

if [ $condition1 ] && [ $condition2 ]

Same as: if [ $condition1 -a $condition2 ]

Returns true if both condition1 and condition2 hold true…”

but when I tried

if [ $a == 2 ] || [ $b == 4 ]
then
echo "a or b is correct"
else
echo "a and b are not correct"
fi

it gives error. I’m using bash.

  • 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-23T13:50:10+00:00Added an answer on May 23, 2026 at 1:50 pm

    Your logic is ok but your comparison operators are incorrect, you should use the ‘-eq’ for comparing integers and ‘==’ for strings. See ‘man test’ for quick reference, though it’s also documented in ‘man bash’.

    When using integer comparison it is always best to initialise variables to 0 as well otherwise if they remain unset you will get errors.

    As mentioned by c00k, use [[ rather than [ if using bash as it is a builtin so bash will not need to shell out to use the /usr/bin/[ command.

    i.e.

    a=0;b=0
    # do something else with a or b
    if [[ $a -eq 2 ]] || [[ $b -eq 4 ]]
    then
        echo "a or b is correct"
    else
        echo "a and b are not correct"
    fi
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Read about the z-index issue and tried anything, but just can't seem to fix
I read the current location's latitude and longitude values and then pin that location
I read the MSDN documentation but didn't really understand it. I believe that the
I read this PHP RegEx page , but either I'm missing something, misreading something,
I read somewhere once that the modulus operator is inefficient on small embedded devices
I read in this article that a company has created a software capable of
Read this question today about safe and unsafe code I then read about it
read(2) and write(2) works both on socket descriptor as well as on file descriptor.
I read about __packed__ from here and, I understood that when __packed__ is used
Read that the following code is an example of unsafe construction as it allows

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.