Created
October 12, 2016 19:30
-
-
Save codl/9d6e6fcee440fce2b3082cecfbf7e6c5 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 | |
| trap true EXIT | |
| while true; do | |
| if [[ $[$RANDOM % 2] == 0 ]]; then | |
| echo n | |
| else | |
| echo y | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment