bash if greater thanShell/Bash By Me (Armandres) on Feb 18 2021 DonateDeleteEdit if (( a > b )); then ... fi #Use above example or below one: if [ "$a" -gt "$b" ]; then ... fi