how to make a file via the command line code example
Example 1: terminal command to create new file
touch filename.txt
Example 2: create file and write to it cmd
echo some-text > filename.txt
touch filename.txt
echo some-text > filename.txt