Unix VIM Editor - Tutorial
Unix vim editor can be useful for file processing and editing.
Escape Mode Commands:
A -> will append the upcoming text at the end of the file
i -> Will change the vim editor into insert mode to enter content.
o -> Insert new line (below)
O-> Insert new line (above)
w -> move by word (forward)
b -> move by word [...]