最佳答案
我发现了一个 shell 脚本,里面有代码
for line in $LIST_ARRAY;do
if [[ $LIST_ARRAY =~ $line ]]
then
echo "true"
....
...
.
在这种情况下,=~
的用途是什么?