“Yes/No” in Bash Script – Prompt for Confirmation

Very often in bash scrips you need to ask for user input that requires a Yes or No answer.

For example, you may want to put a quick “Are you sure?” prompt for confirmation before execution of some potentially dangerous part of a bash script.

In this article you’ll find three easiest and fastest ways to prompt for “Yes/No” confirmation in bash script.

Prompt To Continue In Bash

The best way to prompt for a confirmation to continue in a bash script is to use the read command (source):

read -p "Are you sure? " -n 1 -r
echo    # (optional) move to a new line
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
    exit 1
fi

Simple “Yes/No” Dialog In Bash

One of the most widely used method to ask user for a confirmation in a bash script is to combine read + case commands (source):

while true; do
    read -p "Do you wish to install this program?" yn
    case $yn in
        [Yy]* ) make install; break;;
        [Nn]* ) exit;;
        * ) echo "Please answer yes or no.";;
    esac
done

Select From “Yes/No” Menu In Bash

Another easy method is to use select command (source):

echo "Do you wish to install this program?"
select yn in "Yes" "No"
case $yn in
    Yes ) make install;;
    No ) exit;;
esac
5 (2)
Article Rating (2 Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments (1)
Comment By cellcore - Mon, Nov 30th, 2020 9:24 PM
awesome and straight to the point
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Adding a range of IPs in Linux
Viewed 2750 times since Mon, May 21, 2018
Display basic information about Physical Volumes
Viewed 3532 times since Sun, Jun 3, 2018
Linux: Repeat Command N Times – Bash FOR Loop
Viewed 3108 times since Mon, Feb 18, 2019
30 Handy Bash Shell Aliases For Linux / Unix / MacOS
Viewed 4909 times since Thu, Feb 11, 2021
Tunneling With SSH to Your Destination
Viewed 4521 times since Wed, May 30, 2018
Linux and Unix xargs command tutorial with examples
Viewed 3959 times since Fri, Jun 1, 2018
Transform XML to CSV Format | Unix String Pattern Manipulation The Ugly Way
Viewed 5741 times since Sun, Jan 9, 2022
Bash: Read File Line By Line – While Read Line Loop
Viewed 2320 times since Mon, Feb 18, 2019
8 Practical Examples of Linux Xargs Command for Beginners
Viewed 5607 times since Fri, Jun 1, 2018
Usuwanie spacji z zmiennych w bash
Viewed 2558 times since Tue, May 22, 2018