好用的批处理命令
ping一个网段并将通的ip和不通的ip分别写入不同的txt文件
for /l %D in (1,1,255) do ((ping 192.168.8.%D -n 1 | find "TTL=" > NUL) && echo 192.168.8.%D>>ok.txt || echo 192.168.8.%D >>no.txt)
本文来自博客园,作者:Arthurian,转载请注明原文链接:https://www.cnblogs.com/Arthurian/p/17570083.html
欢迎邮件交流:zhuanxinxin@aliyun.com