Board logo

标题: [文本处理] 批处理获取外网IP 写入到指定位置,请大家看看可有好办法,先谢过! [打印本页]

作者: 136711443    时间: 2014-12-11 16:36     标题: 批处理获取外网IP 写入到指定位置,请大家看看可有好办法,先谢过!

下面这段代码是手动收入 ip地址  替换掉  conf.ini 中的 22.223.90.78    能否自动的 让外网地址写入到  22.223.90.78  位置
  1. @echo off
  2. color 4f
  3. setlocal enabledelayedexpansion
  4. set file=Conf.ini
  5. set "file=%file:"=%"
  6. for %%i in ("%file%") do set file=%%~fi
  7. echo.
  8. set replaced=22.223.90.78
  9. echo.
  10. set all=
  11. set /p all=  请输入你的服务器IP地址:
  12. for /f "delims=" %%i in ('type "%file%"') do (
  13.     set str=%%i
  14.     set "str=!str:%replaced%=%all%!"
  15.     echo !str!>>"%file%"_tmp.txt
  16. )
  17. 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