10
fun with /dev/random
(self.perl)
The output seems pretty similar to using
tr -cd '[:graph:]' < /dev/urandom | head -c 256
Which is pretty nice as well :) Basically just take /dev/urandom and throw away everything that isn't a typeable character :)
tr -cd '[:graph:]' < /dev/urandom | head -c 256
Hey, thanks! I didn't know about the :graph: character set.
$ for i in $(seq 1 10); do tr -cd '[:graph:]' </dev/urandom | head -c 25; echo; done
!jzazhBd-MV9;;`U;G3"DF1Zm
,{*wQ}I3.U;M:bu]'?{nFk.8Y
'`g;7cCp5kBh`*9M$(2Fj@)L*
R)y-"jWn{1G5uh>/cO(T$VNBT
=HsfK@gdJ34hv&"+G)O$\AB.U
f/qEpZ^&-.$cyR8N/JG'stTfV
kFG;Us|w^A9qp&9#wzi/B@**]
=_.`nU&]5L&Id]%Y')@Bri3KX
Lu..z:f2Q&#Q-a}E-.ZJ/"%!N
-Hu~YmwLv#Gp!j8Ap!#+EXRL2
It comes in handy for some weird things like this :)