Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can consume random numbers from a script like this - be careful as this affects parallel applications that consume random numbers:

Code Block
languagebash
titleRun test for random numbers with Unix
for ((i=1; i<=100; i++)); do
   head -200100 /dev/random | cksum | cut -f1 -d ' '
   sleep 0.1
done

...