mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-18 01:29:06 +00:00
5 lines
88 B
Bash
Executable File
5 lines
88 B
Bash
Executable File
# select random element from arguments
|
|
randarg() {
|
|
echo "${${@}[$RANDOM % $# + 1]}"
|
|
}
|