Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizGeneral Tech Bugs & Fixes 3 years ago
User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
if [ ! -z "$foo" ] && [ "$foo2" -eq 0 ]; then
echo 'something'
fi
the first test, [ ! -z "$foo" ] (better written as [ -n "$foo" ]), will run first. The second test will only run if the first test succeeded. If both tests succeed, meaning $foo is a value that is not empty and $foo2 has an arithmetic value equal to zero, then the echo will be executed.
The && operator works like similar operators in other languages. The shell implements short-circuit evaluation and will only evaluate the right hand side of && if the left hand side is true.
This particular if statement could also be written without using the if keyword, as
[ ! -z "$foo" ] && [ "$foo2" -eq 0 ] && echo 'something'
Although using if ...; then ...; fi is IMHO clearer.
Again, the echo would only execute if both preceding tests succeeded.
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
manpreet
Best Answer
3 years ago
from left to right? or vice versa?
example:
What is the evaluation done first?
or
thanks!