D7net Mini Sh3LL v1

 
OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /libx32/../share/snapd/../locale/ia/../../doc/info/../libroken18-heimdal/../usbmuxd/../liberror-perl/../grub2-common/../libjpeg8/../php7.4-mysql/../gnupg/../python3-apt/../netplan.io/../wget/../libcurl3-gnutls/../libthai-data/../python3-six/../screen/../maria/../libxaw7/../libmnl0/../netplan/../gdisk/../systemd-sysv/../grep/../udisks2/../libacl1/../libxmlb1/../libperl5.30/../automake/../libmpfr6/../libisl22/../libext2fs2/../libcrypt1/../libtiff5/../zerofree/../libudev1/../debianutils/../diffutils/../libpython3.8/../kbd/../gawk/../libblockdev-utils2/../lbt/../libgssapi3-heimdal/../libsm6/../libxmlb1/../libalgorithm-merge-perl/../libreadline5/../libhtml-parser-perl/examples/

 Home   ☍ Command   ☍ Upload File   ☍Info Server   ☍ Buat File   ☍ Mass deface   ☍ Jumping   ☍ Config   ☍ Symlink   ☍ About 

Current File : //libx32/../share/snapd/../locale/ia/../../doc/info/../libroken18-heimdal/../usbmuxd/../liberror-perl/../grub2-common/../libjpeg8/../php7.4-mysql/../gnupg/../python3-apt/../netplan.io/../wget/../libcurl3-gnutls/../libthai-data/../python3-six/../screen/../maria/../libxaw7/../libmnl0/../netplan/../gdisk/../systemd-sysv/../grep/../udisks2/../libacl1/../libxmlb1/../libperl5.30/../automake/../libmpfr6/../libisl22/../libext2fs2/../libcrypt1/../libtiff5/../zerofree/../libudev1/../debianutils/../diffutils/../libpython3.8/../kbd/../gawk/../libblockdev-utils2/../lbt/../libgssapi3-heimdal/../libsm6/../libxmlb1/../libalgorithm-merge-perl/../libreadline5/../libhtml-parser-perl/examples/hlc
#!/usr/bin/perl -w

# This script will assume that the first command line argument
# is a file containing HTML, and return a version
# where all the tags are converted to lowercase.

use strict;
use HTML::Parser ();

HTML::Parser->new(start_h   => [ \&start_lc, "tokenpos, text" ],
	          end_h     => [ sub { print lc shift }, "text" ],
                  default_h => [ sub { print shift }, "text" ],
                 )
    ->parse_file(shift) || die "Can't open file: $!\n";

sub start_lc {
    my($tpos, $text) = @_;
    for (my $i = 0; $i < @$tpos; $i += 2) {
	next if $i && ($i/2) % 2 == 0;  # skip attribute values
	$_ = lc $_ for substr($text, $tpos->[$i], $tpos->[$i+1]);
    }
    print $text;
}


AnonSec - 2021 | Recode By D7net