10 bleadperl --branch=maint-5.10 -- -V:prefix
11 bleadperl -- -V:prefix
16 Find the perl(s) in the specified branch (defaults to 'perl' which
19 If the --show parameter is given, show them sorted by mtime.
21 Otherwise run the most recent with the arguments. If there are option
22 arguments, the ones after C<--> will be passed to perl.
27 use List
::Util
qw(reduce);
34 $Opt{branch
} ||= "perl"; # maint-5.10, maint-5.8
35 my @cand = glob("/home/src/perl/repoperls/installed-perls/$Opt{branch}/p*/perl-*\@39999/bin/perl");
37 print map {"$_\n"} sort { -M
$b <=> -M
$a } @cand;
39 my $blead = reduce
{ -M
$a < -M
$b ?
$a : $b } @cand;