Skip to content

Instantly share code, notes, and snippets.

@tommybutler
Created July 24, 2015 15:45
Show Gist options
  • Save tommybutler/4316212118279ffa5694 to your computer and use it in GitHub Desktop.
Save tommybutler/4316212118279ffa5694 to your computer and use it in GitHub Desktop.
Quickly generate a bunch files with random content
for i in `seq -f "%02g" 0 200`; do dd if=/dev/random of=${i}.test bs=1M count=1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment