bash:if...then...else
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:if...then...else [2019/12/12 20:31] – peter | bash:if...then...else [2021/05/28 08:42] (current) – peter | ||
---|---|---|---|
Line 8: | Line 8: | ||
STATEMENTS | STATEMENTS | ||
fi | fi | ||
- | </code | + | </code> |
- | The statements are only executed | + | <WRAP info> |
+ | **NOTE: | ||
The **fi** keyword is used for marking the end of the **if** statement. | The **fi** keyword is used for marking the end of the **if** statement. | ||
+ | |||
+ | </ | ||
Line 32: | Line 35: | ||
</ | </ | ||
- | The above program will only show the output if the number | + | <WRAP info> |
+ | **NOTE: | ||
- | The **-gt** stands for greater than; similarly | + | The space around the **< |
+ | |||
+ | * **-gt**: | ||
+ | |||
+ | Similarly: | ||
+ | |||
+ | * **-lt**: | ||
+ | * **-le**: | ||
+ | * **-ge**: | ||
+ | |||
+ | |||
+ | |||
+ | </WRAP> | ||
---- | ---- | ||
Line 54: | Line 70: | ||
</ | </ | ||
- | The **else** part needs to be placed after the action part of **if** and before **fi**. | + | <WRAP info> |
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Using Elif ===== | ||
+ | |||
+ | The **elif** statement stands for 'else if' and offers a convenient means for implementing chain logic. | ||
+ | |||
+ | <code bash> | ||
+ | # | ||
+ | |||
+ | echo -n "Enter a number: " | ||
+ | read num | ||
+ | |||
+ | if [[ $num -gt 10 ]] | ||
+ | then | ||
+ | echo " | ||
+ | elif [[ $num -eq 10 ]] | ||
+ | then | ||
+ | echo " | ||
+ | else | ||
+ | echo " | ||
+ | fi | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== AND ===== | ||
+ | |||
+ | Use **&& | ||
+ | |||
+ | <code bash> | ||
+ | # | ||
+ | |||
+ | echo -n "Enter Number:" | ||
+ | read num | ||
+ | |||
+ | if [[ ( $num -lt 10 ) && ( $num%2 -eq 0 ) ]]; then | ||
+ | echo "Even Number" | ||
+ | else | ||
+ | echo "Odd Number" | ||
+ | fi | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== OR ===== | ||
+ | |||
+ | Use **||**. | ||
+ | |||
+ | |||
+ | <code bash> | ||
+ | # | ||
+ | |||
+ | echo -n "Enter any number:" | ||
+ | read n | ||
+ | |||
+ | if [[ ( $n -eq 15 || $n -eq 45 ) ]] | ||
+ | then | ||
+ | echo "You won" | ||
+ | else | ||
+ | echo "You lost!" | ||
+ | fi | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | See [[BASH: | ||
bash/if...then...else.1576182703.txt.gz · Last modified: 2020/07/15 09:30 (external edit)