码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本--02修改配置文件中的IP

时间:2018-08-03 00:53:39      阅读:913      评论:0      收藏:0      [点我收藏+]

标签:int   roo   type   判断   print   shel   文件中   echo   $2   

1.修改Json中的IP

$ ./ip.sh8.8.8.1‘
#!/bin/bash
#localIP=$(command)
#
localIP=‘/sbin/ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|grep 8|awk ‘{print $2}‘|tr -d "addr:"‘
for
ip in $(< /home/.../conf/env.json);do if [ ${ip} == "9.9.0.224" ] then sed -i ‘s/${ip}/${localIP}/g‘ /../env.json elif [ ${ip} == "9.9.0.18" ] then sed -i ‘s/${ip}/$1/g‘ /../env.json fi done

2.修改Envtype与Envuser

$ ./env.sh test

1.Ansible调用各个Agent脚本执行,判断envtype="solution"时更新为$1

2.ssh root@${ip} "sed -i ‘s/1/3/g‘ /home/../json"

3.嵌套循环

for file in /home/../*.json
do
    echo "$file:"
    for
       ...
    done
done

 4.判断是哪个环境

for file in /home/.../*
    if [ -d "$file" && "$file"=="taskserver" ]
    then
        echo "$file means localhost is server"
    
    elif [ -d "$file" && "$file" == "taskmaster"]
    then
        echo ""
    elif [ -d "$file" && "$file" == "env_agent"]
    then
        echo ""
    fi
done

 

shell脚本--02修改配置文件中的IP

标签:int   roo   type   判断   print   shel   文件中   echo   $2   

原文地址:https://www.cnblogs.com/cevinchen/p/9410749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!