[Linux] Create a Test File in Linux Bash

This will create a 100MB file (100 x 1024k) called data1.dat at the current location:

dd if=/dev/zero of=data1.dat bs=1024k count=100



Comments