Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
perl-IO-Compress-Lzma /
Delete
Unzip
Name
Size
Permission
Date
Action
Changes
4.49
KB
-rw-r--r--
2021-02-20 13:41
README
2.49
KB
-rw-r--r--
2021-02-20 13:01
lzcat
488
B
-rw-r--r--
2022-02-11 21:17
lzgrep
487
B
-rw-r--r--
2020-10-31 11:09
lzstream
132
B
-rw-r--r--
2022-02-11 21:17
xzcat
478
B
-rw-r--r--
2022-02-11 21:17
xzgrep
475
B
-rw-r--r--
2020-10-31 11:09
xzstream
126
B
-rw-r--r--
2022-02-11 21:17
Save
Rename
#!/usr/bin/perl use strict ; use warnings ; use IO::Uncompress::UnLzma qw($UnLzmaError); die "Usage: gzgrep pattern [file...]\n" unless @ARGV >= 1; my $pattern = shift ; my $file ; @ARGV = '-' unless @ARGV ; foreach $file (@ARGV) { my $gz = new IO::Uncompress::UnLzma $file or die "Cannot uncompress $file: $UnLzmaError\n" ; while (<$gz>) { print if /$pattern/ ; } die "Error reading from $file: $UnLzmaError\n" if $UnLzmaError ; }