Help for this page

Select Code to Download


  1. or download this
    grep { ... } @remote_list
    
  2. or download this
    grep { $_->{filename} eq $file } @remote_list
    
  3. or download this
    my %local_files = map { $_ => 1 } @local_files;
    for (@remote_files) {
       print "match\n" if $local_files{ $_->{filename} };
    }