<!-- 
.. title: Random hex numbers
.. slug: random-hex-numbers
.. date: 2008-08-19 13:29:18 UTC+01:00 
.. tags: encryption, 
.. link: 
.. description: 
.. type: text 
--> 

Can't live with them, can't live without them. 😉

	od -w8 -t x8 -A n /dev/urandom | head -1000 | sed 's/^[ \t]*//'

This gives you one thousand of them. 😏

