# create a big file containing nothing Use Case: Create file on some HDD, so you have something simple to delete if you ever run out of disk space. :> ``` # generate a 5 GB file in ~/DELETEME dd if=/dev/null of=~/DELETEME bs=1 count=0 seek=$(python -c 'print(5 * 1024**3)') ```