I know that in Bash if statements can be evaluated with expr by using:
if [[ 5 > 0 ]]; then echo true; fi
How does Bash evaulate the following form of if?
if [ 5 -gt 0 ]; then echo true; fi
|
I know that in Bash
How does Bash evaulate the following form of
|
|||
|
|