Salut,jai ecrit un petit programme pour la comparaison mais je ovis pas pkoi y marche pas? if [ $# -ne 3] then exit 1 fi if $1>$2 then a=$1 else a=$2 fi if a>$3 then echo $a est le plus grand nombre then echo $3 est le plus grand nombre fi
Les comparaisons arithmetiques se font avec [ $1 -ge $2 ], [ $1 -le $2 ], etc.