标签:err ant variable get art int 代码 txt 查看命令
原文: https://blog.csdn.net/leuxcn/article/details/51288248
----------------------------------------------------------------
@echo off
set /p ip="请输入IP地址段,格式如:"192.168.1." >>> "
for /L %%i in (1,1,254) do (
Ping.exe -n 1 -l 16 -w 100 %ip%%%i>>ipscan.txt
if not errorlevel 1 (echo %ip%%%i 可以ping通)
)
pause
请输入IP地址段,格式如:”192.168.1.” >>> 192.168.1.
192.168.1.100 可以ping通
192.168.1.101 可以ping通
192.168.1.102 可以ping通
192.168.1.103 可以ping通
192.168.1.104 可以ping通
192.168.1.123 可以ping通
192.168.1.144 可以ping通
192.168.1.146 可以ping通
192.168.1.149 可以ping通
192.168.1.150 可以ping通
请按任意键继续…
标签:err ant variable get art int 代码 txt 查看命令
原文地址:https://www.cnblogs.com/oxspirt/p/9591749.html