how to create file in linux using command code example
Example 1: create file in linux
touch <filename>.<extension>
Example 2: cmd make new file
$null > filename (including the $)
touch <filename>.<extension>
$null > filename (including the $)