Help for this page

Select Code to Download


  1. or download this
    $/ = \8; # Read 8-byte records. Behind the scenes, Perl will do buffer
    +ing of reads.
    $out_buffer .= blowfishify($_) while <INFILE>;
    print OUTFILE $out_buffer;
    
  2. or download this
    open BUF, '<', \$buffer or die "$!: Could not open buffer\n";
    $/ = \8;
    $out_buffer .= blowfishify($_) while <INFILE>;
    print OUTFILE $out_buffer;