Skip to content

Instantly share code, notes, and snippets.

@enil
Created June 15, 2016 19:31
Show Gist options
  • Save enil/5535e0443b3bbeed5a0c5a8e8c7a22e0 to your computer and use it in GitHub Desktop.
Save enil/5535e0443b3bbeed5a0c5a8e8c7a22e0 to your computer and use it in GitHub Desktop.
confirm() {
while true; do
read -p "$@" -n 1 answer
echo
case "$answer" in
[yY]) return 0 ;;
[nN]) return 1 ;;
esac
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment