Help for this page

Select Code to Download


  1. or download this
    print "$_ could not be restored!\n" 
        for grep { not exists $found{$_} } 
            @files;
    
  2. or download this
    print 
        map {"$_ could not be restored!\n" } 
            grep { not exists $found{$_} } 
                @files;