bash:if...then...else
This is an old revision of the document!
BASH - if...then...else
If takes the form:
if CONDITION then STATEMENTS fi </code The statements are only executed given the CONDITION is true. The **fi** keyword is used for marking the end of the if statement. ---- ===== Example ===== <code bash> #!/bin/bash echo -n "Enter a number: " read num if [[ $num -gt 10 ]] then echo "Number is greater than 10." fi
The above program will only show the output if the number provided via input is greater than ten.
The -gt stands for greater than; similarly -lt for less than; -le for less than equal; and -ge for greater than equal. The [[ ]] are required.
More Control Using If Else
Combining the else construct with if allows much better control over the script’s logic.
#!/bin/bash read n if [ $n -lt 10 ]; then echo "It is a one digit number" else echo "It is a two digit number" fi
The else part needs to be placed after the action part of if and before fi.
bash/if...then...else.1576182649.txt.gz · Last modified: 2020/07/15 09:30 (external edit)