I need DOS help

BigDog2k

Member
Jun 7, 2000
96
0
61
I know this is going back aways, but I need some dos help. I want to write a batch file that will allow me to ping numbers in a group and the send the results to a file. Let me know what you folks think
 

BudB

Member
Dec 31, 1999
136
0
0
Here's a little batch program that you can use as a template.

ping www.annandtech.com > annand.dat
ping www.msn.com > msn.dat
ping www.cris.com > cris.dat
copy annand.dat+msn.dat+cris.dat pingdata.dat

The final results of the three pings wind up in pingdata.dat. I finally used the copy command after the pings to put the three ping files into one file because the ">>" (append to file redirector symbols) don't appear to work in Win2000.)