Help for this page

Select Code to Download


  1. or download this
    my %have_file;
    undef @have_file{glob("*")};
    my @dont_exist = grep !exists $have_file{$_}, @should_exist;
    
  2. or download this
    my @dont_exist = do {
        my %have_file;
        undef @have_file{glob("*")};
        grep !exists $have_file{$_}, @should_exist;
    };