Created
January 22, 2018 00:52
-
-
Save ingochris/983d25e74307e7601a94a8ea21931352 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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