How to save in Vim using sudo
You can still write on a file that needs root permission, even if you forgot to open Vim with sudo:
:w !sudo tee %
The main trick here is using tee as a hack.
You can still write on a file that needs root permission, even if you forgot to open Vim with sudo:
:w !sudo tee %
The main trick here is using tee as a hack.