in reply to What is a "big job" in the industry?
You'll have to craft an appropriate write_diffs function to look for the 1s in the diff bitvector and write them in your necessary format.foreach my $bigfile_bitvector (@bigfile_bitvectors) { foreach my $smallfile_bitvector (@smallfile_bitvectors) { my $diff_bitvector = $bigfile_bitvector ^ $smallfile_bitvector; write_diffs($diff_bitvector); } }
|
|---|