I have crafted a script in Windows to test network throughput and performance. Basically, it is a ftp loop in conjunction with wget. To quit the loop, just press CTRL-C.
@echo off
:loop
echo Hi! This is a ftp loop!
wget ftp://username:password@server.net/test.wmv
del *.wmv* -y
goto loop
No comments:
Post a Comment