Help for this page

Select Code to Download


  1. or download this
    find(\&oldest, @ARGV);
    
  2. or download this
    sub oldest { 
      return if defined $age && $age < (stat($_))[9]; 
      $age = (stat($_))[9]; 
      $name = $File::Find::name; 
    }