Skip to content

Instantly share code, notes, and snippets.

@hSATAC
Created September 15, 2015 17:45
Show Gist options
  • Select an option

  • Save hSATAC/abc169771bf88fac5cb8 to your computer and use it in GitHub Desktop.

Select an option

Save hSATAC/abc169771bf88fac5cb8 to your computer and use it in GitHub Desktop.
random element
#!/bin/bash
rand() {
echo $(( $1 * RANDOM / 32768 ))
}
rand_element () {
local -a th=("$@")
echo "${th[$( rand ${#th[@]} )]}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment