Tyleo-Dev-ShellScripting-Ol.../SH/dialog01.sh
2024-02-18 22:29:57 +01:00

16 lines
No EOL
208 B
Bash
Executable file

#!/usr/bin/env bash
printf '
Dialogue entre deux personne
'
echo "Type 'start'"
read start
if [[ $start = start ]]; then
read dialog
echo "Bonjour"
read dialog
echo "Oui et toi?"
exit
else
echo
exit
fi