Skip to content

Instantly share code, notes, and snippets.

@dev01d
Created August 16, 2021 11:53
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 dev01d/8d47395d727cdb7d45e0769a54fc5c0e to your computer and use it in GitHub Desktop.
Save dev01d/8d47395d727cdb7d45e0769a54fc5c0e to your computer and use it in GitHub Desktop.
y/n
#!/usr/bin/env bash
read -p "Question (y/N)? " answer
case ${answer:-n} in
y|Y )
echo Yes
;;
n|* )
echo No
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment