Skip to content

Instantly share code, notes, and snippets.

@sbussard
Created June 2, 2016 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbussard/a38ce5fe35daa466be0b4e711fc1f1a4 to your computer and use it in GitHub Desktop.
Save sbussard/a38ce5fe35daa466be0b4e711fc1f1a4 to your computer and use it in GitHub Desktop.
# Add this to ~/.profile or ~/.bashrc or whatever
# ask for a confirmation before executing the following command
confirm() {
read -r -p "Are you sure? [y/N] " response
[[ $response =~ ^([yY][eE][sS]|[yY])$ ]] && $@
}
export alias c=confirm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment