Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Last active August 16, 2019 16:25
Show Gist options
  • Save rohan-molloy/bf751699e3fb05f91609331f6dc0c282 to your computer and use it in GitHub Desktop.
Save rohan-molloy/bf751699e3fb05f91609331f6dc0c282 to your computer and use it in GitHub Desktop.

Ask yes/no in Bash

read -r -p "Are you sure? [y/N] " response
case "$response" in
    [yY][eE][sS]|[yY]) 
        do_something
        ;;
    *)
        do_something_else
        ;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment