There are upcoming maintenance events which may impact our services. Learn more

Editing files in SSH using VI Print

  • 1

VI is a Linux text editor that can edit most of the files under a Linux architecture (text files, php, cfm, cfc, etc).

To open a file in VI editor, type the following:

vi FileName

For a file named test.txt, it would be:

vi test.txt

Once the file has been opened, press the "insert" or "i" key on your keyboard to enter edit mode.

The "Esc" key will allow you to leave the edit mode, but not the VI editor.

Here is the list of the most used commands in the VI editor:

  • :q! - Forces the editor to exit without saving.
  • :w - Saves the changes that have been made to the file.
  • :wq - Saves the changes that have been made to the file and then exits.
  • :# - Where # is a number - Brings you to line number #
  • :$ - Brings you to the last line of the file
  • :0 - Brings you to the first line of the file
  • :/word - This will search for the string "word" in the file. By pressing "n" you can view the other search result.

Was this answer helpful?

« Back