in reply to Fork/Child Question

Here's how you can do it using threads, assuming that your Perl has threading built in. (run perl -V to check if you can use threads (look for usethreads=define)).

#!/usr/bin/perl use strict; use warnings; use threads; foreach (0..100) { # create a thread to call the "run_system" subroutine # to run "ls -la" on the OS my $thread = threads->create("run_system", "ls -la"); $thread->detach; } sub run_system { my $cmd = shift; system($cmd); } __END__

Replies are listed 'Best First'.
Re^2: Fork/Child Question
by BrowserUk (Patriarch) on Jul 28, 2004 at 03:19 UTC

    Or as a one-liner :)

    perl -Mthreads=async -le"async{ system 'dir'; } for 1 .. 100"

    Examine what is said, not who speaks.
    "Efficiency is intelligent laziness." -David Dunham
    "Think for yourself!" - Abigail
    "Memory, processor, disk in that order on the hardware side. Algorithm, algoritm, algorithm on the code side." - tachyon