|
/me looks around and whistles innocently
#!/usr/bin/perl
#stupidly simple bot
$url_to_fetch = "http://some_domain.com";
$how_many_times = "1000";
# rewquires the LWP::Simple perl module
use LWP::Simple;
for(1..$how_many_times) {
get($url_to_fetch);
}
|