Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 187 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 187 Bytes

sh-xorshift

xorshift random number generators implementation for POSIX shells.

Usage

rnd=2463534242
for i in $(seq 10000); do
  xorshift32 rnd "$rnd"
  echo "$rnd"
done