Skip to content

Instantly share code, notes, and snippets.

@vitapluvia
Last active December 25, 2015 22:39
Show Gist options
  • Save vitapluvia/7051227 to your computer and use it in GitHub Desktop.
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 : )
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