Skip to content

Instantly share code, notes, and snippets.

@mcthomas
Created August 22, 2024 04:02
Show Gist options
  • Save mcthomas/37d9f119bdbe6cde80112b6f364e88de to your computer and use it in GitHub Desktop.
Save mcthomas/37d9f119bdbe6cde80112b6f364e88de to your computer and use it in GitHub Desktop.
Roll two dice in your terminal
dice=(⚀ ⚁ ⚂ ⚃ ⚄ ⚅)
printf '%s\n' "${dice[RANDOM % 6]}" "${dice[RANDOM % 6]}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment