标题: 飞秋导入ip段文件
[打印本页]
作者: rs369007
时间: 2009-2-17 21:29
标题: 飞秋导入ip段文件
@echo off & setlocal EnableDelayedExpansion
echo ------其他网段好友IP数据------>D:\局域网ip段.txt
echo begin to write the file!
set /a i=0
FOR /L %%f IN (1,1,254) DO (
set /a i=!i+1
echo 172.16.!i!.1-172.16.!i!.254>>D:\局域网ip段.txt
)
cls
echo completed!
echo.
echo press any key to exit!
pause>nul
[
Last edited by rs369007 on 2009-3-19 at 11:28 ]