curl -s http://ip4.ouc.edu.cn/Default2.aspx | grep '访客IP地址: ' | sed 's/:/\n/g' | sed '1d' | sed 's/</\n/g' | sed '2d' | sed '2d' | sed '1,1 s/^.//g'
运行程序只能得到curl的结果,而不是后面的ip地址,结果附在最后
因此我只能手动改掉这一行,目前可以正常使用
var_local_wan_ip=`curl -s http://ip4.ouc.edu.cn/Default2.aspx | grep '访客IP地址: ' | sed 's/:/\n/g' | sed '1d' | sed 's/</\n/g' | sed '2d' | sed '2d' | sed '1,1 s/^.//g'`
#var_local_wan_ip=`${var_local_wan_ip}`
在这行https://github.com/risfeng/aliyun-ddns-shell/blob/219ac8e5fcfdc767fe74fce221913d5f839699ca/src/aliyun/aliyun-ddns.sh#L240
我自定义获取wan ip的命令后
运行程序只能得到curl的结果,而不是后面的ip地址,结果附在最后
因此我只能手动改掉这一行,目前可以正常使用
附上curl的结果供参考
原版程序的运行结果