Skip to content

Instantly share code, notes, and snippets.

@tekk555
Last active December 20, 2015 22:28
Show Gist options
  • Save tekk555/6204835 to your computer and use it in GitHub Desktop.
Save tekk555/6204835 to your computer and use it in GitHub Desktop.
任意のサイズのランダムなバイナリファイルを作成する.Ubuntu 12.04LTS
# 100 byte
dd if=/dev/urandom of=/var/100byte.dat count=100 bs=1;
# 150 kbyte
dd if=/dev/urandom of=/var/150kbyte.dat count=150 bs=1k;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment