This commit is contained in:
mael 2022-10-12 09:15:36 +02:00
commit 7105decc3b

14
monshell2.sh Executable file
View file

@ -0,0 +1,14 @@
read -p "entrez une valeur mavar" mavar
if [ $mavar -eq 1 ]
then
echo "un"
elif [ $mavar -eq 3 ] || [ $mavar -eq 5 ]
then
echo "trois ou cinq"
else
echo "autre chose"
fi