aboutsummaryrefslogtreecommitdiff
path: root/fichiers/scripts/greaterthan.sh
blob: e79921eff50fa591fbdd280bfdccc9d1ac1bfac9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if [ $1 -gt 10 ]
then
  echo "$1 est supérieur à 10"
    if [ $1 -gt 100 ]
    then
      echo "et $1 est même supérieur à 100!"
    fi
else
  echo "Il faut aller au-dessus de 10 pour avoir une réponse!"
fi