bash – 为什么在[[…]]之间不执行引用删除?

$man bash

Word splitting and filename expansion are not performed on the words between the ‘[[’ and ‘]]’; tilde expansion,parameter and variable expansion,arithmetic expansion,command substitution,process substitution,and quote removal are performed.

$echo $BASH_VERSION
4.2.10(1)-release

命令1

$[[ "hello" =~ "he"   ]] && echo YES || echo NO
YES

命令2

$[[ "hello" =~  he.*  ]] && echo YES || echo NO
YES

命令3

$[[ "hello" =~ "he.*" ]] && echo YES || echo NO
NO

为什么命令2和3不同?

检查你的bash版本.从版本3.2开始,添加了以下状态:

Quoting the string argument to the [[ command’s =~ operator now forces
string matching,as with the other pattern-matching operators.

我猜你正在使用bash> = ver 3.2进行测试.

这就是你引用正则表达式的原因,它正在进行简单的字符串匹配而不是正则表达式匹配.

更新:如果你想在双引号内匹配正则表达式,那么使用:

shopt -s compat31

根据手册:

compat31

If set,bash changes its behavior to that of version 3.1
with respect to quoted arguments to the conditional command’s =~ operator.

这会导致您的命令行为不同:

[[ "hello" =~ "he.*" ]] && echo YES || echo NO
YES

相关文章

普通模式 >G 增加当前行到文档末尾处的缩紧层级 $ 移动到本行的末尾 . 相当于一个...
原文连接: https://spacevim.org/cn/layers/lang/elixir/ 模块简介 功能特性 启用模块 快捷键 语言专属...
原文连接: https://spacevim.org/cn/layers/lang/dart/ 模块简介 功能特性 依赖安装及启用模块 启用模...
 =   赋值操作符,可以用于算术和字符串赋值 +        加法计算     -        减法运算...
1.根据包名来查看指定的APP指定数据 adb shell "top | grep com.xxx.xxx" 由于这样打印出来的数...
ctrl+F 向下翻页 ctrl+B 向下翻页 u 取消最近一次操作 U 取消当前行的操作 ZZ 保存当前内容并退出 gg 跳...