linux shell 如何约等于字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux shell 如何约等于字符串相关的知识,希望对你有一定的参考价值。
这个以后肯定用的上的,直接放命令了
#!/bin/bash
STR=‘GNU/Linux is an operating system‘
SUB=‘Linux‘
if [[ "$STR" =~ ."$SUB". ]]; then
echo "It‘s there."
fi
答案是 It‘s there
下面这个是我脚本用到的,用正则表达式
if [ $src_ip = "47.112.15.82" ]
then
name="阿里云"
elif [ $src_ip = "113.16.167.157" ]
then
name="清湖中心"
elif [[ $src_ip =~ .*"180.139".* ]]
then
name="梁懿机器"
else
name="第三者"
fi
以上是关于linux shell 如何约等于字符串的主要内容,如果未能解决你的问题,请参考以下文章