Help for this page

Select Code to Download


  1. or download this
    for my $cmd (@ARGV) {
      &{$dispatch->{$cmd}}
        or warn "Unrecognized command $cmd!\n";
    }
    
  2. or download this
    for my $cmd (keys %$opts) {
      &{$dispatch->{$cmd}}
        or warn "Unrecognized command $cmd!\n";
    }