Bashスクリプトでユーザーにyes / noを要求するデフォルトの機能/ユーティリティはありますか?


14

時々、ユーザーに何かを確認するためにyes / noを尋ねる必要があります。

通常、次のようなものを使用します。

# 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;
}

それを行うためのより良い方法はありますか?このユーティリティは既に/binフォルダにあるのでしょうか?


2
を使用して試すことができますがselect、それ以外の場合は簡単な方法が表示されません。
ムル14年

2
@muru、あなたのアイデアを完全に盗んでいます。担当者にお渡しできればと思います。
グレンジャックマン14年

@glennjackmanそれをコラボレーションと呼びます。;)
muru 14年

回答:


13

ああ、組み込みのものがあります:zenityグラフィカルなダイアログプログラムです:

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

に加えてzenity、次のいずれかを使用できます。

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

3
ダイアログプログラムが許容されている場合は、ないでしょうdialogwhiptailそれ以上CLIに適していますか?
ムル14年

2
確かに。答えに追加されました。
グレンジャックマン14年

1
個人的には、yadより多くの改善とIMOの少ないバグがあるforkを好みます。
Sparhawk

11

それは私には問題ありません。私はそれを少しだけ「行うか死ぬ」ようにします:

  • 「Y」の場合 return 0
  • 「N」の場合 return 1

そうすれば、次のようなことができます:

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

@muruのselect提案により、この関数は非常に簡潔になります。

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

1

結論として、私はこのスクリプトを書きまし

#!/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;

スクリプトの最新バージョンはこちらにあります。自由に記入して変更/編集


0

私は次を使用しています:

  • デフォルトはno:
    read -p "??? Are You sure [y/N]? " -n 1
    if [[ ! $REPLY =~ ^[Yy]$ ]]; then
        echo "!!! Canceled by user."
        exit 1
    fi
  • デフォルトはyes:
    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.
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.