Skip to content

Instantly share code, notes, and snippets.

@amitaibu
Last active August 29, 2015 14:25
Show Gist options
  • Save amitaibu/89a65a78718da90f2e17 to your computer and use it in GitHub Desktop.
Save amitaibu/89a65a78718da90f2e17 to your computer and use it in GitHub Desktop.
echo -n "Is this a good question (y/n)? "
read answer
if echo "$answer" | grep -iq "^y" ;then
echo Yes
else
echo No
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment