为什么80%的码农都做不了架构师?>>>
本文要说的命令如下:
:w ! sudo tee % > /dev/null
在做 linux 配置的時候,会改到只讀的文件,比如 /etc/profile
$ ls -al /etc/profile
-rw-r–r– 1 root root 1139 Mar 14 17:30 /etc/profile
用 vim 打開該只文件 /etc/profile 修改后,保存會出錯:
:w
E45: ‘readonly’ option is set (add ! to override)
按提示在命令结尾加一个叹号,然后再次执行,还是出错:
:w!
“/etc/profile” E212: Can’t open file for writing
用以下命令可以解决。此时,Vim会有两次交互,
一,输入密码:
:w ! sudo tee % > /dev/null
[sudo] password for user:
二,警告文件已被修改了,并显示出一个选项菜单。
这里按 L键重新将该文件载入缓冲区。
Press ENTER or type command to continue
W12: Warning: File “/etc/profile” has changed and the buffer was changed in Vim as well
See “:help W12” for more info.
[O]K, (L)oad File:
该条命令如何工作:
查阅vim 的文档(输入:help :w),会提到 :write !{cmd}。
:[range]w[rite] [++opt] !{cmd}
Execute {cmd} with [range] lines as standard input
(note the space in front of the ‘!’). {cmd} is
executed like with “:!{cmd}”, any ‘!’ is replaced with
the previous command :!.
该命令会把缓冲区的内容作为标准输入传给指定的{cmd}, {cmd} 可以是任何外部的命令或程序。這裡調用了外部命令tee以sudo 权限运行保存。命令中符号 % 是vim 当中一个只读寄存器的名字,总保存着当前编辑文件的文件路径,这里就会展开为当前文件的完整路径/etc/profile. 然后缓冲区的内容将当做标准输入,覆盖该编辑文件的内容。vim 检测到该文件被一个外部程序修改,就会跳出提示选择。然而这里的文件和缓冲区的内容是一致的。
这条命令怪模怪样,却经常用到。记在这里,加深理解,也有助于记住此命令。