Created
August 6, 2020 21:03
-
-
Save sheilambadi/2d797b0b105e7708598e1bef3d6cca41 to your computer and use it in GitHub Desktop.
Elif statement bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ logical expression ]; then | |
statement 1 | |
statement 2 | |
elif [ logical expression ]; then | |
statement 3 | |
statement 4 | |
elif [ logical expression ]; then | |
statement 4 | |
statement 5 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment