“Bash Vérifiez si le nombre est supérieur à” Réponses codées

Bash Vérifiez si le nombre est supérieur à

# bash check if number is greater than
a=10
b=11

if [ $a -gt $b ]; then
	echo "this is won't be executed, because $a is smaller than $b";
fi

# DON'T DO THIS:
if [ $a > $b ]; then 		#INCORRECT!!
	echo "this will be executed, incorrectly";
fi
Dark Dotterel

bash si plus grand que

# In bash, you should do your check in arithmetic context:

if (( a > b )); then
    ...
fi

# For POSIX shells that don't support (()), you can use -lt and -gt.

if [ "$a" -gt "$b" ]; then
    ...
fi
Blue Badger

Réponses similaires à “Bash Vérifiez si le nombre est supérieur à”

Questions similaires à “Bash Vérifiez si le nombre est supérieur à”

Plus de réponses similaires à “Bash Vérifiez si le nombre est supérieur à” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code