Conditional Statements
Use conditions to run different code paths based on logical tests.
if [ $score -ge 90 ]; then echo "A"; fiTry it Yourself
Run this BASH example in your local environment or course sandbox.
Bash Tutorial
Use conditions to run different code paths based on logical tests.
if [ $score -ge 90 ]; then echo "A"; fi