in reply to How to install Compress::Stream::Zstd in Strawberry Perl?
FWIW, the last time I tried (2022 it was, c/p-ing now from a script), I gave up, and, to decompress:
my $in = ...; my $out; my @cmd = qw/zstd.exe -d -/; IPC::Run3::run3 \@cmd, \$in, \$out, \undef, { binmode_stdin => ':raw', + binmode_stdout => ':raw' };
HTH ;)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to install Compress::Stream::Zstd in Strawberry Perl?
by cmv (Chaplain) on Mar 04, 2025 at 23:01 UTC |