Linux - Files - Create an empty file

Create an empty/null file with a specified size

dd if=/dev/zero of=destinationfile.bin bs=1024k count=100

NOTE: This creates a 100MB (1024k * 100) sized file.