Shell判断字符串包含关系
时间: 2023-12-19 10:06:27 浏览: 144
用Shell判断字符串包含关系的方法小结
可以使用bash中的"=~"操作符来判断字符串是否包含。
例如,如果要测试变量$var是否包含字符串"hello",可以使用以下命令:
if [[ $var =~ "hello" ]]; then
echo "Var contains hello"
else
echo "Var does not contain hello"
fi
这将在$var中查找字符串"hello"。如果找到了,将输出"Var contains hello"。如果没有找到,将输出"Var does not contain hello"。
阅读全文