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

Posted CevinChen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本--02修改配置文件中的IP相关的知识,希望对你有一定的参考价值。

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 [email protected]${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的主要内容,如果未能解决你的问题,请参考以下文章

Shell脚本 使用sed流编辑器一键修改CentOS网卡IP地址

shell----批量修改多个文件中的IP地址

如何在shell脚本中修改添加替换指定文件中的内容

第一个shell脚本——修改配置文件

Python3 写的远程批量修改文件内容的脚本

想写个shell脚本来自动配置ip,子网掩码和网关