Help for this page

Select Code to Download


  1. or download this
    while (<$a_fh>) {
        print unless exists $second_file{unpack 'A*', $_};
    }
    
  2. or download this
    while (<$file_a>) {
        unless (exists $h{unpack 'A*', $_}) {
    ...
            last;
        }
    }