Skip to content

Instantly share code, notes, and snippets.

@lukassup
Created September 2, 2016 19:42
Show Gist options
  • Select an option

  • Save lukassup/aec9d2e5ad7533d730f143eed5e4f5ee to your computer and use it in GitHub Desktop.

Select an option

Save lukassup/aec9d2e5ad7533d730f143eed5e4f5ee to your computer and use it in GitHub Desktop.
#!/bin/bash
random_choice() {
choices=("$@")
echo ${choices[$(( $RANDOM % ${#choices[@]} ))]}
}
random_choice "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment