Skip to content

Instantly share code, notes, and snippets.

@depoulo
Created May 24, 2018 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save depoulo/7b436e8a89a7a43697c34d61952cc832 to your computer and use it in GitHub Desktop.
Save depoulo/7b436e8a89a7a43697c34d61952cc832 to your computer and use it in GitHub Desktop.
Create 100kB of random text
# Windows (Git bash)
dd if=/dev/urandom of=tmp bs=100kB count=1 && base64 tmp > big && rm tmp && cat big > /dev/clipboard && rm big
# Mac OS
dd if=/dev/urandom of=tmp bs=100kB count=1 && base64 tmp > big && rm tmp && cat big | pbcopy && rm big
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment