#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # Based on the work in # https://gist.github.com/romkatv/a6cede40714ec77d4da73605c5ddb36a and # https://unix.stackexchange.com/a/729026 # # Examples: # # % print -r -- $(( srand32() )) # 3941417569 # # % local -i x='srand32()' # % typeset -p x # typeset -i x=1284015263 emulate -L zsh -o no_multi_byte local bytes IFS= read -rk4 -u0 bytes < /dev/urandom || return local b1=$bytes[1] b2=$bytes[2] b3=$bytes[3] b4=$bytes[4] return '#b1 << 24 | #b2 << 16 | #b3 << 8 | #b4' # END OF FILE #################################################################