#!/usr/bin/perl -w use strict; my $runs = 100; while ($runs) { my $pid = fork; # Parent if ($pid) { $runs--; } # Child if ($pid == 0) { my $output = `wget -S http://www.mysitegoeshere.org -O /dev/null 2> /dev/null`; exit; } }