how to create files in folders in ubuntu code example
Example 1: how to make file in terminal ubuntu
$ touch file1.txt
Example 2: how to make directory in ubantu
mkdir "NewDirectory" && cd "$_"
$ touch file1.txt
mkdir "NewDirectory" && cd "$_"