Help for this page

Select Code to Download


  1. or download this
    $last= (sort { -M $b <=> -M $a } <*.log>)[-1];
    
  2. or download this
    $last = (
        map { $_->[0] } 
    ...
        map { [ $_, -M $_ ] } 
        <*.log>
        )[-1];