我正在尝试处理一系列文件。我注意到从命令行运行特定命令存在差异(即ex
模式)。 E.g。
$cat poo.txt
big
red
dog
small
black
cat
$vim -c "2,$g/^dog/d|wq" poo.txt
$cat poo.txt
big
small
black
cat
2,$g/^dog/d|wq
似乎删除了red
和dog
的行。这让我感到困惑,因为命令应该:从第2行开始(转到EOF)并删除以dog
开头的所有行。在这种情况下,我希望输出为:
$ cat poo.txt
big
red
small
black
cat
事实上,如果我在vim编辑器中尝试这一点,这就是观察到的确切行为。
问题:运行此命令的vim -c
版本和vim
版本之间存在差异的原因是什么?
答案 0 :(得分:3)
我认为您需要用单引号替换双引号,以防止shell扩展$g
。来自man bash
:
Enclosing characters in double quotes preserves the literal value of all
characters within the quotes, with the exception of $, `, \, and,
when history expansion is enabled, !.
目前,您的shell会在字符串中展开$g
,就好像它是一个环境变量一样。但它可能没有定义,因此扩展为空字符串。所以,即使你输入了:
vim -c "2,$g/^dog/d|wq" poo.txt
Vim没有收到命令:
2,$g/^dog/d|wq
......但是:
2,/^dog/d|wq
此命令将删除地址为2
的所有行到下一个以dog
开头的行(在您的情况下是第3行)。然后,它保存并退出。
但即使你更换引号,你的命令仍然存在问题。
来自:h :bar
:
These commands see the '|' as their argument, and can therefore not be
followed by another Vim command:
...
:global
...
该栏由:g
解释为其参数的一部分,而不是命令终止。在您的情况下,这意味着每当它找到以dog
开头的行时,它将删除它,然后立即保存并退出。因此,如果有多个dog
行,则只删除第一行,因为:g
将保存并在处理完第一个后退出。
您需要隐藏|wq
:g
,方法是将全局命令包装在字符串中并使用:execute
执行,或者将wq
移到另一个-c {cmd}
中vim -c 'exe "2,\$g/^dog/d" | wq' poo.txt
1}}。总而言之,您可以尝试:
vim -c '2,$g/^dog/d' -c 'wq' poo.txt
或
vim -c '2,$g/^dog/d' -cx poo.txt
或
jQuery(function($) {
jQuery(document).ready(function() {
jQuery(document).on('change', '[id^=more-talktime-]', function() {
var id = this.id.split('-').pop();
if (this.checked)
jQuery('#talktime-options-' + id).fadeIn('slow');
else
jQuery('#talktime-options-' + id).fadeOut('slow');
});
});
});