[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
doc
/
perl-IO-Compress
/
compress-zlib
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 filtdef
437 B
SET
[ EDIT ]
|
[ DEL ]
📄 filtinf
470 B
SET
[ EDIT ]
|
[ DEL ]
📄 gzcat
495 B
SET
[ EDIT ]
|
[ DEL ]
📄 gzgrep
463 B
SET
[ EDIT ]
|
[ DEL ]
📄 gzstream
314 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: gzstream
#!/usr/bin/perl use strict ; use warnings ; use Compress::Zlib ; binmode STDOUT; # gzopen only sets it on the fd #my $gz = gzopen(\*STDOUT, "wb") my $gz = gzopen('-', "wb") or die "Cannot open stdout: $gzerrno\n" ; while (<>) { $gz->gzwrite($_) or die "error writing: $gzerrno\n" ; } $gz->gzclose ;