Skip to content

Instantly share code, notes, and snippets.

@tevino
Created June 20, 2018 07:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tevino/ecc36b3c2150ef5962efb571cc5be562 to your computer and use it in GitHub Desktop.
Save tevino/ecc36b3c2150ef5962efb571cc5be562 to your computer and use it in GitHub Desktop.
indent() { sed 's/^/ /'; }
confirm() {
msg=$1 || "Are you sure?"
msg="$msg (y/N)"
read -p "$msg" -n 1 -r
echo
[[ $REPLY =~ ^[Yy]$ ]]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment