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 :)
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:]' /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 :)