open file to edit in terminal code example
Example 1: command to edit in terminal linux
type nano followed by the file name
Example 2: 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 3: edit files from terminal linux
nano FileName.Extension
// nano MyWork.txt
// nano MyScript.py