我有一串

$VAR="I-UAT";

在我的shell脚本代码中。我需要一个条件语句来检查该字符串中是否存在"UAT"

我应该使用什么命令来获取真或假 bool(boolean) 值作为输出?
还是有其他检查方法?

最佳答案

什么 shell ?使用bash:

if [[ "$VAR" =~ "UAT" ]]; then
    echo "matched"
else
    echo "didn't match"
fi

08-26 14:41