Advertisement
Guest User

lbzip2 (lacos)

a guest
Jul 11th, 2010
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. grep '^processor' /proc/cpuinfo \
  2. | (
  3.     while read DUMMY; do
  4.       od -t x1 -A n -N 32 /dev/random  \
  5.       | tr -d '[[:space:]]' \
  6.       | gpg -c -z0 --passphrase-fd=0 --disable-mdc \
  7.           --cipher-algo=TWOFISH -o - /dev/zero &
  8.     done
  9.     wait
  10.   ) \
  11. | pv >/dev/null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement