为什么此命令行有效:
$ 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)