Skip to content

Instantly share code, notes, and snippets.

@greymd
Created November 27, 2016 14:27
Show Gist options
  • Save greymd/9cbd72164301d2fca8c4c302647072b7 to your computer and use it in GitHub Desktop.
Save greymd/9cbd72164301d2fca8c4c302647072b7 to your computer and use it in GitHub Desktop.
巨大素数生成シェル芸
$ cat /dev/urandom| LANG=C tr -dc '0-9' | fold -w 70 | grep -v '^0' | xargs -n 1 openssl prime -hex | awk '!/not/{print $1;}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment