Shell判断字符串不包含关系
时间: 2023-12-10 11:03:02 浏览: 324
用Shell判断字符串包含关系的方法小结
您可以使用bash中的"!"操作符来判断一个字符串不包含另一个字符串,例如:
```
if [[ ! $str1 == *"$str2"* ]]; then
echo "Str1 does not contain str2"
fi
```
其中,`$str1`是待判断的字符串,`$str2`是要排除的字符串。如果`$str1`不包含`$str2`,则输出"Str1 does not contain str2"。
阅读全文