Created
May 24, 2018 12:23
-
-
Save depoulo/7b436e8a89a7a43697c34d61952cc832 to your computer and use it in GitHub Desktop.
Create 100kB of random text
This file contains 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
# 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