有个需求需要修改某配置文件,其中有很多相同的字段,无法直接去匹配。例如
[MapServer]
#监听地址
host = 127.0.0.1
#监听端口
port = 1107
[IDIPServer]
#监听地址
host = 127.0.0.1
#监听端口
port = 1101
[AlarmServer]
#监听地址
host = 127.0.0.1
#监听端口
port = 1191
其中可能修改AlarmServer下面的host,就比较棘手,下面提供一种思路,去修改这个字段
function modifyImpl()
{
local gsip=$1
local pattern=$2 # 匹配的字符串.如FightClient
local replaceIP=$3 # 替换的ip
fileName=$DEPLOY_DIR/gs/gs.cfg
replace="host = $replaceIP"
let line=`ssh -n tomcat@$gsip "sed -n '/'$pattern'/=' $fileName"` # 取得pattern的行号
target=`ssh -n tomcat@$gsip "tail -n+$line $fileName | grep -nm1 'host'"` # 从pattern的行号开始,取得第一个匹配host的行的内容
let lineNum=${target%:*} # 取得host偏移的行号
let result=$lineNum+$line-1 # 取得符合条件的host的真正行号
ssh -n tomcat@$gsip "sed -i \"${result},${result}c $replace\" $fileName" #替换指定行的内容
}
调用:
modifyImpl $gsip "FightClient" $fsip
思路是先去匹配上面的特殊字段,如AlarmServer,然后记录下行号,再去从这个行号开始,取得第一个匹配到host的行号,然后在修改指定行号的内容即可