分类: LINUX
2010-10-27 21:40:54
当我们使用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
chinaunix网友2010-10-28 18:25:10
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com