Last active
December 25, 2015 22:39
-
-
Save vitapluvia/7051227 to your computer and use it in GitHub Desktop.
This is a fun little /dev/urandom test using sed, cut and xxd : )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat /dev/urandom | cut -c 10-64 | sed 's/0/\_/g; s/1/\./g' |xxd -b | sed 's/0/]/g; s/1/[/g' | sed 's/\[\]/{ /g; s/1/[/g' | sed 's/\[\_/__/g; s/1/[/g' | cut -c 10-64 | sed 's/\s/|/g' | sed 's/^/..||00||_/g' | sed 's/$/_../g' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment