Skip to content

Instantly share code, notes, and snippets.

@szydan
Created August 16, 2012 10:01
Show Gist options
  • Save szydan/3369037 to your computer and use it in GitHub Desktop.
Save szydan/3369037 to your computer and use it in GitHub Desktop.
Create a file of certain size filed with random content or zeros
#how to create a file of certain size and random content
dd if=/dev/urandom of=output.dat bs=1024 count=1024
#the same for zero’ish content
dd if=/dev/zero of=output.dat bs=1024 count=1024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment