Skip to content

Instantly share code, notes, and snippets.

@sandywu
Forked from Me1000/gist:3388879
Created August 19, 2012 02:57
Show Gist options
  • Save sandywu/3391333 to your computer and use it in GitHub Desktop.
Save sandywu/3391333 to your computer and use it in GitHub Desktop.
echo "Hi, I'm Douglas Crockford. What do you want?";
while read question
do
what="$question"
if [ -z "${what}" ]; then
echo "Stop waisting my time."
exit
else
echo "My code is perfect."
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment