Help for this page

Select Code to Download


  1. or download this
    do { print "$_ could not be restored!\n" unless ( exists $found{$_} ) 
    +} foreach (@files);
    
  2. or download this
    foreach (@files) {
        print "$_ could not be restored!\n" unless ( exists $found{$_} );
    }
    
  3. or download this
    exists $found{$_} or print "$_ could not be restored!\n" foreach @file
    +s;