等波浪符运算符在 bash 4 中不起作用

The equal tilde operator is not working in bash 4

在具有 bash 版本 3 的服务器中,我这样做:

bash3$ e="tar xfz"; [[ "$e" =~ "^tar" ]] && echo 0 || echo 1
0

但是当我在 bash 版本 4

中执行相同的命令时
bash4$ e="tar xfz"; [[ "$e" =~ "^tar" ]] && echo 0 || echo 1
1

我在 CentOS、Fedora 和 Ubuntu 上试过,得到了相同的结果。怎么了?

引用 Greg's Wiki 中关于正则表达式的部分:

Before 3.2 it was safe to wrap your regex pattern in quotes but this has changed in 3.2. Since then, regex should always be unquoted.

这是最兼容的使用方式 =~:

e='tar xfz'
re='^tar'
[[ $e =~ $re ]] && echo 0 || echo 1

这应该适用于 bash 的两个版本。

在这种情况下,您只想确保参数以 tar 开头,不需要正则表达式匹配,简单的模式匹配也可以:

e='tar xfz'
[[ $e == tar* ]] && echo 0 || echo 1