Esiste una funzione / utilità predefinita per richiedere all'utente sì / no in uno script Bash?


14

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 /bincartella?


2
Puoi provare a usare a select, ma per il resto non vedo un modo più semplice.
Muru,

2
@muru, sto completamente rubando le tue idee. Vorrei poterti consegnare il mio rappresentante.
Glenn Jackman,

@glennjackman La definirei collaborazione. ;)
muru,

Risposte:


13

Ah, c'è qualcosa di incorporato: zenityè un programma di dialogo grafico:

if zenity --question --text="Is this OK?" --ok-label=Yes --cancel-label=No
then
    # user clicked "Yes"
else
    # user clicked "No"
fi

Inoltre zenity, puoi utilizzare uno di:

if dialog --yesno "Is this OK?" 0 0; then ...
if whiptail --yesno "Is this OK?" 0 0; then ...

3
Se i programmi di dialogo sono accettabili, non sarebbero dialogo whiptailsarebbero più adatti alla CLI?
Muru,

2
Infatti. Aggiunto alla risposta.
Glenn Jackman,

1
Personalmente, preferisco il fork, yadche presenta più miglioramenti e meno bug IMO.
Sparhawk,

11

Mi sembra perfetto. Lo farei solo un po 'meno "fai o muori":

  • se "Y" allora return 0
  • se "N" allora return 1

In questo modo puoi fare qualcosa come:

if check_yes_no "Do important stuff? [Y/n] "; then
    # do the important stuff
else
    # do something else
fi
# continue with the rest of your script

Con il selectsuggerimento di @ muru , la funzione può essere molto concisa:

check_yes_no () { 
    echo "$1"
    local ans PS3="> "
    select ans in Yes No; do 
        [[ $ans == Yes ]] && return 0
        [[ $ans == No ]] && return 1
    done
}

1

Come conclusione ho scritto questo script :

#!/bin/bash

usage() { 
    echo "Show yes/no dialog, returns 0 or 1 depending on user answer"
    echo "Usage: $0 [OPTIONS]
    -x      force to use GUI dialog
    -m <string> message that user will see" 1>&2
    exit 1;
}

while getopts m:xh opts; do
    case ${opts} in
        x) FORCE_GUI=true;
            ;;
        m) MSG=${OPTARG}
            ;;
        h) usage
            ;;
    esac
done

if [ -z "$MSG" ];then
    usage
fi

# Yes/no dialog.
# If the user enters n/N, return 1.
while true; do
    if [ -z $FORCE_GUI ]; then
        read -p "$MSG" yn
        case "$yn" in
            [Yy] )
                exit 0;;
            [Nn] )
                echo "Aborting..." >&1
                exit 1;;
            * )
                echo "Please answer y or n for yes or no.";;
        esac
    else
        if [ -z $DISPLAY ]; then echo "DISPLAY variable is not set" >&1 ; exit 1; fi
        if zenity --question --text="$MSG" --ok-label=Yes --cancel-label=No; then
            exit 0
        else
            echo "Aborting..." >&1
            exit 1
        fi
    fi
done;

L'ultima versione dello script è disponibile qui . Riempi gratuitamente per cambiare / modificare


0

Sto usando il seguente:

  • il valore predefinito è no:
    read -p "??? Are You sure [y/N]? " -n 1
    if [[ ! $REPLY =~ ^[Yy]$ ]]; then
        echo "!!! Canceled by user."
        exit 1
    fi
  • l'impostazione predefinita è sì:
    read -p "??? Are You sure [Y/n]" -n 1
    if [[ $REPLY =~ ^[Nn]$ ]]; then
        echo "!!! Canceled by user."
        exit 1
    fi

0
 read -p 'Are you sure you want to continue? (y/n) ' -n 1 confirmation
 echo ''                                                                                                   
 if [[ $confirmation != 'y' && $confirmation != 'Y' ]]; then                                               
   exit 3                                                                                                
 fi
 # Code to execute if user wants to continue here.
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.