/usr/share/doc/libio-compress-lzma-perl/examples/lzstream is in libio-compress-lzma-perl 2.063-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #!/usr/bin/perl
use strict ;
use warnings ;
use IO::Compress::Lzma qw(:all);
lzma '-' => '-'
or die "lzstream: $LzmaError\n" ;
|