我的.sh脚本中有一个字符串$ {testmystring},我想检查这个字符串是否不包含其他字符串。
if [[ ${testmystring} doesNotContain *"c0"* ]];then # testmystring does not contain c0 fi
我该怎么做,那么诺康特应该是什么呢?
使用!=。
原文链接:https://www.f2er.com/bash/388014.htmlif [[ ${testmystring} != *"c0"* ]];then # testmystring does not contain c0 fi
请参阅帮助[[了解更多信息。