how to make and edit new file in terminal code example
Example 1: edit file terminal
vim filename.txt
//press i to enter insert mode
//press esc to exit insert mode
type :wq then enter to leave vim
Example 2: how to create new file through terminal
touch bar.txt