“verifique se o número é maior que” Respostas de código

verifique se o número é maior que

# 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 se maior 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

Respostas semelhantes a “verifique se o número é maior que”

Perguntas semelhantes a “verifique se o número é maior que”

Mais respostas relacionadas para “verifique se o número é maior que” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código