Help for this page

Select Code to Download


  1. or download this
    sub RUN {
       my $arg = $_[0];
       fork;
       do stuff on my $arg; ($arg is a file, stuff is making a report)
       }
    
  2. or download this
    RUN(arg1);
    wait;
    RUN(arg2);
    wait;
    RUN(arg3);
    wait;