W
Size: a a a
W
SZ
AS
AS
AS
SZ
AS
SZ
AS
AS
AS
$ cat 6.pl
#!/bin/env perl
use v5.20;
use B::Deparse;
my $output;
open(my $outHandle, '>', \$output) or die;
my $oldHandle = select $outHandle;
my $compilesub = B::Deparse::compile();
&$compilesub();
select $oldHandle;
close $outHandle;
say 'BEGIN!';
say $output;
say 'END!';
AS
AS
AG
AG
AS
AG
b
my $gz = ..->new('/path/to/file.gz');
while(my $chunk = $gz->uncompress(2048)) {
...
}
YK