Vim, as you might already know, is a feature-packed and powerful editor. Here at HowtoForge, we’ve written several tutorials on Vim, covering its basic usage, plugins, as well as some other useful features. But given the sea of features Vim offers, we always find something useful to share with our readership.

In this tutorial, we will focus on how you can execute external commands as well as access the command line shell from within the editor window.

Execute external commands in Vim

Sometimes you might want to execute external commands from within the Vim editor window. For example, consider a situation where-in you’ve opened a file in Vim, made some changes, and then while trying to save those changes, Vim throws an error saying you don’t have sufficient permissions.

<img alt="Execute commands in VIM" data-ezsrc="https://kirelos.com/wp-content/uploads/2022/11/echo/vim-perm-error.png6380ac3d3e113.jpg" ezimgfmt="rs rscb5 src ng ngcb5" height="34" loading="lazy" src="data:image/svg xml,” width=”475″>

Now, exiting the current vim session and again opening the file with sufficient privileges will mean loss of all the changes you’ve done, so that’d, you’ll agree, not be an option in most cases. It’s situations like these where the ability to run external commands from within the editor comes in handy.

We’ll come back to the above use case later(**), but for now, let’s understand how you can run basic commands from within vim.

Suppose while editing a file, you want to know the number of lines, words, and characters the file contains. To do this, in the command mode of Vim, just input colon (:) followed by a bang (!) and finally the command (‘wc’ in this case) followed by the file name (use % for current file).

:! wc %

Here’s an example:

File with the aforementioned command ready to be executed:

<img alt="Command ready to be executed in VIM" data-ezsrc="https://kirelos.com/wp-content/uploads/2022/11/echo/vim-count-lines.png6380ac3d7efb4.jpg" ezimgfmt="rs rscb5 src ng ngcb5" height="439" loading="lazy" src="data:image/svg xml,” width=”258″>

and here’s the output on the terminal:

<img alt="command output" data-ezsrc="https://kirelos.com/wp-content/uploads/2022/11/echo/vim-wc-output.png6380ac3db952b.jpg" ezimgfmt="rs rscb5 src ng ngcb5" height="79" loading="lazy" src="data:image/svg xml,” width=”376″>

After you are done seeing the output, press the Enter key and you’ll be taken back to your Vim session.

This feature can come in really handy in situations where, say, you are writing a code or script, and want to quickly know whether or not the code/script contains any compile-time or syntax errors.

Moving on, in case the requirement is to add the output to the file, use the ‘:read !’ command. Here’s an example:

:read ! wc %

The ‘read’ command inserts the output of the external command on a new line below the current line in the file being edited. If you want, you can also specify a particular line number – the output will be added after that particular line.

For example, the following command will add the output of ‘wc’ after the second line the file.

:2read ! wc %

Note: Use ‘$’ to insert after the last line and ‘0’ to insert before the first line.

Now, coming back to the use case we discussed in the beginning (**), here’s the command that’ll help you save the file without needing to close it first (which means no loss of unsaved changes) and then open it with, say, sudo

:w ! sudo tee %

<img data-ezsrc="https://kirelos.com/wp-content/uploads/2022/11/echo/vim-sudo-passwrd.png6380ac3df255a.jpg" ezimgfmt="rs rscb5 src ng ngcb5" height="47" loading="lazy" src="data:image/svg xml,” width=”306″>

Access Shell in Vim

In addition to executing individual commands, you can also have yourself dropped in a newly-launched shell from within Vim. For this, all you have to do is to run the following command from the editor:

:shell

or

:sh

and type ‘exit’ when you are done with the shell work – this will bring you back into the Vim session from where you left initially.

The loophole to keep in mind

While the ability to access a shell definitely has its own uses in the real world, it can also be used as a privilege escalation technique. As we have explained in one of our earlier tutorials (on sudoedit), even if you provide a user sudo access to only edit one file through Vim, they may launch a new shell from within the editor using this technique, and will then be able to do anything as ‘root’ or superuser.

The ability to run external commands from within Vim is an important feature that can come in handy in many situations (some of which we have mentioned in this tutorial). The learning curve for this feature isn’t steep, so both beginners, as well as experienced users, can take advantage of it.

Have you been using this feature for quite some time now? Do you have something to share? Please leave your thoughts in the comments below. Maybe you are interested in the Linux tee command too.