SHELL 查找字符串中包含字符的命令
Posted 云刄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SHELL 查找字符串中包含字符的命令相关的知识,希望对你有一定的参考价值。
1.通配符 string=‘My long string‘ if [[ $string == *"My long"* ]]; then echo "It‘s there!" fi 2.正则匹配 string=‘My long string‘ if [[ $string =~ .*My.* ]]; then echo "It‘s there!" fi
3.switch…case版本的通配符(速度最快……) string=‘My long string‘
case "$string" in
*ERROR*)
# Do stuff
echo "包含ERROR..."
;;
*ORA-*)
echo "包含bbb..."
return 1
;;
*) #若以上都不符合,则给出交互式提示并退出。
usage
return 0
;;
esac
4.用grep来实现 string=‘My long string‘ if grep -q foo <<<$string; then echo "It‘s there" fi 5.用字符串替换/删除来实现 string=‘My long string‘ if [ "$string" != "${string/foo/}" ]; then echo "It‘s there!" fi
以上是关于SHELL 查找字符串中包含字符的命令的主要内容,如果未能解决你的问题,请参考以下文章