how to create a file in ubuntu terminal code example
Example 1: how to make file in terminal ubuntu
$ touch file1.txt
Example 2: cmd make new file
$null > filename (including the $)
$ touch file1.txt
$null > filename (including the $)