|
[root@localhost root]# vi [file name]
vi Options
| :i |
text editable mode |
| Esc |
exit from editable mode |
| :q |
quit from vi editor |
| :q! |
force to quit |
| :w |
write |
| :wq |
write and quit |
| :x |
write and quit |
| :zz |
write and quit |
| 0 |
move the cursor to beginning of the line |
| $ |
move the cursor to end of the line |
| w |
next word of the line |
| b |
previous word of the line |
| :set nu |
show line numbers |
| :set nonu |
hide line numbers |
| :set list |
display non printable char |
| :set nolist |
hide non printable number | |