Can I gain root permission without leaving vim?

前端 未结 2 1419
半阙折子戏
半阙折子戏 2021-02-05 12:33

Sometimes when I edit a file which require root permission (e.g. files under /etc), but I forget run vim as sudo.

After edit finished, and type :wq to save

2条回答
  •  無奈伤痛
    2021-02-05 13:13

    To force a save use the following command

    :w !sudo tee %
    

    It will prompt you for your password.

提交回复
热议问题