make a file in linux terminal code example
Example 1: linux make file
touch file1.txt #Create file1.txt
Example 2: linux terminal create file
/* only create file */
touch myFile.html
/* create and open to edit */
nano myFile.html
vim myFile.html