帮忙写一个批处理 把IP段整理成一个一个的IP

2023-12-31 17:54:39
推荐回答(1个)
回答1:

@echo off
set t=1.198.0
(for /l %%i in (1,1,255) do echo %t%.%%i)>%t%.txt
notepad %t%.txt