Help for this page
for my $c (@car_links) { my $pid = fork(); ... push @known_cars, $c; write_url_to_known_cars($c, $fh); }
for my $c (@car_links) { threads->create(sub { ... push @known_cars, $c; write_url_to_known_cars($c, $fh); }