Write vim file as super-user?

10

6

This is a usability problem that happens often to me:

I open a read-only system file with vim, even editing it, because I'm not attentive enough, or because the vim on the system is badly configured. Once my changes are done, I'm stuck having to write them in a temporary file or losing them, because :w! won't work.

Is there a vim command (:W!!!) that allows you to write the current buffer as a super-user? (Vim would ask for your sudo or su password naturally)

zimbatm

Posted 2010-05-26T16:24:11.487

Reputation: 203

Related: How does the vim “write with sudo” trick work? at SO

– kenorb – 2015-08-20T16:40:50.660

1The SO is definitely a dupe, however the two SU questions address a separate problem solved with the sudoedit command. This question is more focused on forgetting to type it in the first place and elevating after starting the editor. – heavyd – 2010-05-26T20:22:32.150

Answers

15

:w !sudo tee % >/dev/null`

Explanation: With !, you can execute programs. By prefixing it with :w, the file's content (the stuff you have in vim, not the original file, more precisly: the buffer) will be given to the command on standard input. % is replaced by the file name, and the >/dev/null avoids that the content is again printed to the screen (which is the usual behavior of tee).

I've found an even shorter way. dd does not print to stdout so you can save the null thing.

:w !sudo dd of=%

​‍

Same is for :r, which inserts the output of the given command, so you can for example insert the current date into your file by using :r !date

Marian

Posted 2010-05-26T16:24:11.487

Reputation: 888

does not work with undofiles – Christian Brabandt – 2015-08-20T21:39:02.503

Thanks a lot, you made my life a lot better ! (Brian too) – zimbatm – 2010-06-08T20:22:45.167

I've just added a second method. – Marian – 2010-06-08T21:33:02.827

That's really neat! – Anthony Giorgio – 2011-01-11T22:35:59.547

5

Try:

:w !sudo tee % >/dev/null

Brian

Posted 2010-05-26T16:24:11.487

Reputation: 1 009