A volte ho bisogno di chiedere all'utente sì / no per confermare qualcosa.
Di solito uso qualcosa del genere:
# Yes/no dialog. The first argument is the message that the user will see.
# If the user enters n/N, send exit 1.
check_yes_no(){
while true; do
read -p "$1" yn
if [ "$yn" = "" ]; then
yn='Y'
fi
case "$yn" in
[Yy] )
break;;
[Nn] )
echo "Aborting..."
exit 1;;
* )
echo "Please answer y or n for yes or no.";;
esac
done;
}
C'è un modo migliore per farlo? Questa utility è forse già nella mia /bin
cartella?
select
, ma per il resto non vedo un modo più semplice.