Help for this page

Select Code to Download


  1. or download this
    my @extList;
    push @extList, $_ for @ARGV;
    
  2. or download this
    use Getopt::long;
    my @extList;
    ...
      ? map { split /,/ } @extList; # in case of --ext foo,bar
      : qw( pl pm );
    $root ||= '.';