bonsoir;
esque vous pouvez m'aider a me comprendre le fonctionnement de ces mot cles?
ce script affiche une fenetre et ensuite choisir un fichier pour l'executer
merci.
#!/bin/bash
DIALOG=${DIALOG=dialog}
$DIALOG --backtitle "MENU DE COMPILATION" \
--title "COMPILATION" \
--radiolist "Faites votre choix : " 0 0 0 \
"exo1.c" "Compilation exercice 1." off \
"exo2.c" "Compilation exercice 2." off \
"exo3.c" "Compilation exercice3"off2>/tmp/checklist.tmp.$$
retval=$?
choix=`cat /tmp/checklist.tmp.$$`
rm -f /tmp/checklist.tmp.$$
case $retval in
0) case $choix in
exo1.c) gcc exo1.c
exec (…)