Help for this page

Select Code to Download


  1. or download this
    # Set everything to initially be executed
    for (keys %scripts) { $scripts{$_}{execute}++; }
    
  2. or download this
    $scripts{1}{execute} = 1
    $scripts{2}{execute} = 1
    etc...
    
  3. or download this
        for (keys %scripts) { $scripts{$_}{execute}=undef; }
    
  4. or download this
        # Skip this one if we need to
        next SCRIPT if !defined $scripts{$script}{execute};
    
  5. or download this
    map { $scripts{$_}{execute}++; } keys %scripts;