#!/usr/bin/perl $repeat = "10"; $site = "http://www.fakesite.com"; #if it is a graphical counter just download the graphic, don't waste time with the html for ($current = 1; $current < $repeat; $current++) { system "curl $site"; } print "You bombed $site $repeat times!\n";