ssh_port=`sed '/^ssh_port=/!d;s/.*=//' ${hostConfFile}` host_ip=`sed '/^host_ip=/!d;s/.*=//' ${hostConfFile}` host_name=`sed '/^host_name=/!d;s/.*=//' ${hostConfFile}` net_ntp_ip=`sed '/^net_ntp_ip=/!d;s/.*=//' ${hostConfFile}` ntp_ip=`sed '/^ntp_ip=/!d;s/.*=//' ${hostConfFile}` ntp_gw=`sed '/^ntp_gw=/!d;s/.*=//' ${hostConfFile}` sys_name=`sed '/^sys_name=/!d;s/.*=//' ${hostConfFile}` is_yum=`sed '/^is_yum=/!d;s/.*=//' ${hostConfFile}` is_compile_ntp=`sed '/^is_compile_ntp=/!d;s/.*=//' ${hostConfFile}`
时间: 2023-04-10 21:02:39 浏览: 111
ssh: connect to host 192.168.136.130 port 22: Connection refused,Fodera 远程连接失败
这是一段 shell 脚本,从一个配置文件中读取了一些变量的值。这些变量包括 ssh_port、host_ip、host_name、net_ntp_ip、ntp_ip、ntp_gw、sys_name、is_yum 和 is_compile_ntp。这些变量的含义需要根据具体的上下文来理解。
阅读全文