Skip to content

Instantly share code, notes, and snippets.

@gburd
Created January 15, 2016 14:27
Show Gist options
  • Select an option

  • Save gburd/3531ba08647b218b29da to your computer and use it in GitHub Desktop.

Select an option

Save gburd/3531ba08647b218b29da to your computer and use it in GitHub Desktop.
"Would you like to continue?" sh function
confirm () {
# call with a prompt string or use a default
read -r -p "${1:-Would you like to continue? [y/N]} " response
case $response in
[yY][eE][sS]|[yY])
true
;;
*)
false
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment