代码:#!/bin/bash hostname=$(hostname) #调用hostname命令获取主机名放入变量hostname中 #echo $hostname if [ `echo ${hostname} | grep "\.stg\."` ]; then #如果hostname变量中含有“.stg.”字样,注意grep中支持正则表达式,于是.需要用\.去匹配 echo "stg server" # 显示这是stg机器 fi--2020-03-18--