Linux Text Editor (vi, vim, nano)


vi is a text editor tool used to create and modify contents of file.
Syntax: vi <filename>
Note: If file is already present it will open the existing file, which you can modify and if file is not present it will create a file with same name that you mention after it.

Below are the combination of keys which you need to press while working with vi editor. You first need to press Esc Key and then hold and press another Key such as i (to insert) and x (to delete).

Press KeyTo Perform below action
Esc + iInsert mode - used to type or modify contents.
Esc + xDelete one character (used if you are not in Insert mode).
Esc + ddDelete one line.
Esc + 3ddDelete 3 lines.
Esc + 3yyCopy 3 lines.
Esc + pPaste copied contents
Esc + 3ddDelete 3 lines.
Esc + uUndo last action.
Esc + UUndo last all actions.
Esc + GMoves cursor to the end of file.
Esc + HMoves cursor to the begining of file.
Esc + AMoves cursor end of line in Insert Mode.
Esc + rReplace one character.
Esc + RReplace mode - used to replace the contents.

nano is also a good file editor tool used to create and modify contents of file.
Syntax: nano <filename>
Note: Once you are in nano editor - you just need to follow shortcut key that shows on your screen.