Macで任意のサイズのダミーファイルを作成
dd
を使う方法もあるが、macOSなら
mkfile
を使うのが簡単。
code:shell
$ mkfile -nv 10m dummy.txt
これで10MBのファイルができる。
#shell