参见英文答案 >
Strange behavior of argv when passing string containing “!!!!”3个
为什么这个命令行有效:
为什么这个命令行有效:
$output='Irrelevant'; if [[ $output =~ Something ]]; then echo "I found something in the output." ; fi
这个给我一个奇怪的解析错误?
$output='Irrelevant'; if [[ $output =~ Something ]]; then echo "I found something in the output!" ; fi -bash: !": event not found
与第一个版本相比,唯一的变化是在引号内回显的句子以感叹号结束.为什么Bash在第二个版本中给我错误?
如果重要,这是bash –version的输出:
GNU bash,version 4.2.24(1)-release (x86_64-pc-linux-gnu)
您可以将字符串换成单引号而不是双引号.
原文链接:https://www.f2er.com/bash/385199.html感叹号调用bash
manual中描述的非常有用的历史扩展函数.
History expansions are introduced by the appearance of the history expansion character,which is
!
by default. Only\
and'
may be used to escape the history expansion character.
例如,要执行以MysqL开头的最后一个命令,请输入:
!MysqL
或者执行包含单词grep的最后一个命令,输入:
!?grep
bash手册还记录了history expansion operators的语法.