Bash检查字符串是否不包含其他字符串

前端之家收集整理的这篇文章主要介绍了Bash检查字符串是否不包含其他字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的.sh脚本中有一个字符串$ {testmystring},我想检查这个字符串是否不包含其他字符串。
if [[ ${testmystring} doesNotContain *"c0"* ]];then
        # testmystring does not contain c0
    fi

我该怎么做,那么诺康特应该是什么呢?

使用!=。
if [[ ${testmystring} != *"c0"* ]];then
    # testmystring does not contain c0
fi

请参阅帮助[[了解更多信息。

原文链接:https://www.f2er.com/bash/388014.html

猜你在找的Bash相关文章