Skip to content

Instantly share code, notes, and snippets.

@rawiriblundell
Created April 18, 2021 11:11
Show Gist options
  • Save rawiriblundell/f78b0670fc3b8684f76bfa8717b1be01 to your computer and use it in GitHub Desktop.
Save rawiriblundell/f78b0670fc3b8684f76bfa8717b1be01 to your computer and use it in GitHub Desktop.
# This is based on one of the best urandom+bash random integer scripts IMHO
# FYI: randInt is significantly faster
# https://unix.stackexchange.com/a/413890
urandInt() {
local intCount rangeMin rangeMax range bytes t maxvalue mult hexrandom
intCount="${1:-1}"
rangeMin="${2:-1}"
rangeMax="${3:-32767}"
range=$(( rangeMax - rangeMin + 1 ))
bytes=0
t="${range}"
while (( t > 0 )); do
(( t=t>>8, bytes++ ))
done
maxvalue=$((1<<(bytes*8)))
mult=$((maxvalue/range - 1))
while (( i++ < intCount )); do
while :; do
hexrandom=$(dd if=/dev/urandom bs=1 count=${bytes} 2>/dev/null | xxd -p)
(( 16#$hexrandom < range * mult )) && break
done
printf -- '%u\n' "$(( (16#$hexrandom%range) + rangeMin ))"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment