Help for this page

Select Code to Download


  1. or download this
    my $first = 'run_this_first'; # or whatever
    @filenames = sort { ($b eq $first) cmp ($a eq $first)
       || -M $b <=> -M $a } @filenames;
    
  2. or download this
    my %modtimes;
    $modtimes{$_} = -M $_ foreach @filenames;
    $modtimes{$first} = 1e99;
    @filenames = sort { $modtimes{$b} <=> $modtimes{$a} } @filenames;