Skip to content

Instantly share code, notes, and snippets.

@codl
Created October 12, 2016 19:30
Show Gist options
  • Select an option

  • Save codl/9d6e6fcee440fce2b3082cecfbf7e6c5 to your computer and use it in GitHub Desktop.

Select an option

Save codl/9d6e6fcee440fce2b3082cecfbf7e6c5 to your computer and use it in GitHub Desktop.
#!/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