为什么这个命令行有效:
$ 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)
您可以将字符串括在单引号而不是双引号中。
感叹号调用bash
手册中描述的非常有用的历史扩展函数。
历史扩展是通过历史扩展字符的外观引入的,默认情况下
!
。只能使用和
'
来转义历史扩展字符。
例如,要执行以单词 mysql
开头的最后一个命令,请键入以下内容:
!mysql
或者要执行包含单词 grep
的最后一个命令,请键入以下内容:
!?grep
bash
手册还记录了历史扩展运算符的语法。