Re: ping command (dos help)
- From: "Pegasus \(MVP\)" <I.can@xxxxxxx>
- Date: Fri, 21 Sep 2007 18:22:01 +0200
"David Crow" <david_dot_crow@xxxxxxxxxx> wrote in message
news:%23s9X9fG$HHA.1208@xxxxxxxxxxxxxxxxxxxxxxx
Put the following in a.bat:
for %%x in (1 2 3 4 5 6 7 8 9 10) do b.bat %%x
Put the following in b.bat
ping 192.168.1.%1 -t
This does not address your "separate window" requirement.
Your reply has a few other problems too:
- It comes three weeks after the question was posted.
- It never gets beyond the first IP address.
- It violates the KISS principle. Your code would neatly
fit into a single batch file like so:
for /L %%x in (1,1,10) do ping 192.168.1.%%x -t
.
- Follow-Ups:
- Re: ping command (dos help)
- From: David Crow
- Re: ping command (dos help)
- References:
- Re: ping command (dos help)
- From: David Crow
- Re: ping command (dos help)
- Prev by Date: Re: ping command (dos help)
- Next by Date: Re: ping command (dos help)
- Previous by thread: Re: ping command (dos help)
- Next by thread: Re: ping command (dos help)
- Index(es):
Relevant Pages
|
Loading