vim 打开sudo权限文件不退出保存

前端之家收集整理的这篇文章主要介绍了vim 打开sudo权限文件不退出保存前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

It’s easy

:w !sudo tee %

Why do you do that?

:   vim insert model
w   Write a file.
!sudo  All shell sudo command.
tee  The output of the vi/vim write command is redirected using tee.
%  Triggers the use of the current filename.
原文链接:https://www.f2er.com/bash/389871.html

猜你在找的Bash相关文章