You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#布尔判断
ENABLED=false;
if ! ${ENABLED} -a ${#array[@]} -gt 0 ;then
fi
#字符串匹配判断
name="test-web";
if [[ $name == *-web ]];then
fi
#字符串精确判断
name="test-web";
if [ $name == "test-web" ];then
fi