标题: [文本处理] 批处理获取外网IP 写入到指定位置,请大家看看可有好办法,先谢过! [打印本页]
作者: 136711443 时间: 2014-12-11 16:36 标题: 批处理获取外网IP 写入到指定位置,请大家看看可有好办法,先谢过!
下面这段代码是手动收入 ip地址 替换掉 conf.ini 中的 22.223.90.78 能否自动的 让外网地址写入到 22.223.90.78 位置- @echo off
- color 4f
- setlocal enabledelayedexpansion
- set file=Conf.ini
- set "file=%file:"=%"
- for %%i in ("%file%") do set file=%%~fi
- echo.
- set replaced=22.223.90.78
- echo.
- set all=
- set /p all= 请输入你的服务器IP地址:
- for /f "delims=" %%i in ('type "%file%"') do (
- set str=%%i
- set "str=!str:%replaced%=%all%!"
- echo !str!>>"%file%"_tmp.txt
- )
- move "%file%"_tmp.txt "%file%"
复制代码
作者: Batcher 时间: 2014-12-11 17:16
批处理怎样获取外网IP地址?
http://bbs.bathome.net/thread-2870-1-1.html
批处理如何正确获得外网、内网IP并纪录?
http://bbs.bathome.net/thread-4978-1-1.html
VBS获取外网IP
http://bbs.bathome.net/thread-546-1-1.html
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |