Simple load robot

Jaakko Hyvatti (Jaakko.Hyvatti@www.fi)
Thu, 2 Nov 1995 20:35:19 +0200 (EET)


> Does anyone have a simple robot that I can use to exercise a web
> server?

Would this do the job, maybe run multiple times in parallel?
(Please replace the url's..)

#!/bin/sh
while true
do
for i in \
http://www.fi/ \
http://www.fi/search.html \
http://www.fi/index/ \
http://www.fi/~jaakko/ \
http://www.fi/sss/ \
http://www.fi/www/ \
http://www.fi/links.html
do
lynx -source $i > /dev/null
done
done