Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
Devel-PPPort /
devel /
Delete
Unzip
Name
Size
Permission
Date
Action
buildperl.pl
13.96
KB
-r--r--r--
2014-12-27 11:48
devtools.pl
2.41
KB
-r--r--r--
2014-12-27 11:48
mkapidoc.sh
2.06
KB
-r--r--r--
2014-12-27 11:48
mktodo
1.68
KB
-r--r--r--
2014-12-27 11:48
mktodo.pl
7.64
KB
-r--r--r--
2014-12-27 11:48
regenerate
4.07
KB
-r--r--r--
2014-12-27 11:48
scanprov
2.16
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#!/bin/bash ################################################################################ # # mkapidoc.sh -- generate apidoc.fnc from scanning the Perl source # ################################################################################ # # Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz. # Version 2.x, Copyright (C) 2001, Paul Marquess. # Version 1.x, Copyright (C) 1999, Kenneth Albanowski. # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # ################################################################################ function isperlroot { [ -f "$1/embed.fnc" ] && [ -f "$1/perl.h" ] } function usage { echo "USAGE: $0 [perlroot] [output-file] [embed.fnc]" exit 0 } if [ -z "$1" ]; then if isperlroot "../../.."; then PERLROOT=../../.. else PERLROOT=. fi else PERLROOT=$1 fi if [ -z "$2" ]; then if [ -f "parts/apidoc.fnc" ]; then OUTPUT="parts/apidoc.fnc" else usage fi else OUTPUT=$2 fi if [ -z "$3" ]; then if [ -f "parts/embed.fnc" ]; then EMBED="parts/embed.fnc" else usage fi else EMBED=$3 fi if isperlroot $PERLROOT; then cat >$OUTPUT <<EOF :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: : : !!!! Do NOT edit this file directly! -- Edit devel/mkapidoc.sh instead. !!!! : : This file was automatically generated from the API documentation scattered : all over the Perl source code. To learn more about how all this works, : please read the F<HACKERS> file that came with this distribution. : :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: : : This file lists all API functions/macros that are documented in the Perl : source code, but are not contained in F<embed.fnc>. : EOF grep -hr '^=for apidoc' $PERLROOT | sed -e 's/=for apidoc //' | grep '|' | sort | uniq \ | perl -e'$f=pop;open(F,$f)||die"$f:$!";while(<F>){(split/\|/)[2]=~/(\w+)/;$h{$1}++} while(<>){s/[ \t]+$//;(split/\|/)[2]=~/(\w+)/;$h{$1}||print}' $EMBED >>$OUTPUT else usage fi