Created
September 5, 2013 04:02
-
-
Save shoyan/6445951 to your computer and use it in GitHub Desktop.
yesかnoを訪ねて、yesの場合は処理をする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
while true; do | |
read -p "Do you wish to install this program? [y/n]" yn | |
case $yn in | |
[Yy] ) echo "Install!"; break;; | |
[Nn] ) exit;; | |
* ) echo "Please answer y or n.";; | |
esac | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment