vim保存readonly文件

转自:http://blog.chinaunix.net/space.php?uid=21843387&do=blog&id=105990


当我们使用vim编辑类似于/etc/network/interfaces这样的文件的时候总是会遇到权限问题不能保存,原因是所有的配置文件的权限只属于root。 那么怎样直接以root权限直接vim

这些文件?

方法是:

结合sudo和tee两个命令来实现: w !sudo tee %

解释如下:

:w – Write a file.

!sudo – Call shell sudo command.

tee – The output of write (vim :w) command redirected using tee.

% – is nothing but current file name


你可能感兴趣的:(LINUX/C)