This commit is contained in:
owen 2022-10-12 09:13:47 +02:00
parent 4b1e5056c6
commit 092a6d9537

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