Skip to content

Instantly share code, notes, and snippets.

@abarrak
Last active August 18, 2016 17:23
Show Gist options
  • Save abarrak/e750aa6270186f1175c440a7a0bed14d to your computer and use it in GitHub Desktop.
Save abarrak/e750aa6270186f1175c440a7a0bed14d to your computer and use it in GitHub Desktop.
Generate Dummy Large Files

You can generate large files using the bash dd command as follows:

  dd of=large.png bs=1024 count=0 seek=$[1024*10]

This will generate 10 MB.

Notice that it's not an actual png image despite the .png extenstion.

More on: This page.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment