Skip to content

Instantly share code, notes, and snippets.

@kneth
Created April 4, 2020 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kneth/8279c16c29190dd2a58fbc4f053fa218 to your computer and use it in GitHub Desktop.
Save kneth/8279c16c29190dd2a58fbc4f053fa218 to your computer and use it in GitHub Desktop.
Bingo in BASH
echo $(seq 1 90) | tr " " "\n" | while read i; do printf "%06d %s\n" $RANDOM $i; done | sort -n | cut -c8- | while read n; do echo $n ; sleep 5 ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment