在 shell 脚本中有几种可以判断字符串包含的关系。利用 grep123456789strA="long string"strB="string"result=$(echo $strA | grep "${strB}")if [[ "$result" != "" ]]then echo "包含"else echo "不包含"fi利用运算符12345678strA="helloworld"strB="low"if [[ $strA =~ $strB ]]then echo "包含"else echo "不包含"fi利用通配符12345678A="helloworld"B="low"if [[ $A == *$B* ]]then echo "包含"else echo "不包含"fiShell判断字符串包含关系的几种方法