Je commence par bash et j'ai trouvé ce qui suit:
if test $first -lt $second
then
echo $first is lower than $second
else
if test $first -gt $second
then
echo $first is higher than $second
else
echo $first and $second are equals
fi
fi
Pour lire le script et l'exécuter, je sais ce qu'il fait, mais pas à quoi servent -lt et -gt.
Quelqu'un peut-il me dire quel est le nom de ce type d'outil et ce qu'il fait (-lt et -gt)? Merci!
echo
déclarations du code répondent à votre question.