Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl -l
    
    ...
            exit;   # <<<=== PROBLEM HERE!
        }
    }
    
  2. or download this
    sub multi_dir {
        ...
    ...
            }
        }
    }
    
  3. or download this
    ...
    print "PARENT($$): Before multi_dir() call";
    ...
    
        return 0;
    }
    
  4. or download this
    if ($limit) {
        @subs = @subs[1 .. $limit];
    }
    
  5. or download this
    if (defined $limit and $limit > @subs) {
        @subs = @subs[0 .. $limit - 1];
    }
    
  6. or download this
    while (keys %children >= $max) {
    
    }