Create an empty test file in Linux

Print

Q. How can I create an empty test file? 

A. There are several ways, including dd command, but this one is the quickest: 

fallocate -l 10G test.file

 


 

Linux