Skip to content

Instantly share code, notes, and snippets.

@ingochris
Created January 22, 2018 00:52
Show Gist options
  • Select an option

  • Save ingochris/983d25e74307e7601a94a8ea21931352 to your computer and use it in GitHub Desktop.

Select an option

Save ingochris/983d25e74307e7601a94a8ea21931352 to your computer and use it in GitHub Desktop.
#!/bin/bash
meaningoflife=42
pass=0
echo "Hello, what is the meaning of life?"
while [ "$pass" -ne 1 ];
do
read answer
if [ $answer = "$meaningoflife" ]; then
echo 'Correct!'
pass=1
else
echo "You were off by $(( $meaningoflife - $answer )), please have another go:"
pass=0
fi
done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment