linux create and write file code example
Example 1: linux make file
touch file1.txt #Create file1.txt
Example 2: write in a file linux
sudo apt-get update
sudo apt install nano
nano <filename>
touch file1.txt #Create file1.txt
sudo apt-get update
sudo apt install nano
nano <filename>