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
aclocal
#!/usr/bin/perl -w # -*- perl -*- # Generated from bin/aclocal.in; do not edit by hand. eval 'case $# in 0) exec /usr/bin/perl -S "$0";; *) exec /usr/bin/perl -S "$0" "$@";; esac' if 0; # aclocal - create aclocal.m4 by scanning configure.ac # Copyright (C) 1996-2018 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # Written by Tom Tromey <tromey@redhat.com>, and # Alexandre Duret-Lutz <adl@gnu.org>. BEGIN { unshift (@INC, '/usr/share/automake-1.16') unless $ENV{AUTOMAKE_UNINSTALLED}; } use strict; use Automake::Config; use Automake::General; use Automake::Configure_ac; use Automake::Channels; use Automake::ChannelDefs; use Automake::XFile; use Automake::FileUtils; use File::Basename; use File::Path (); # Some globals. # Support AC_CONFIG_MACRO_DIRS also with older autoconf. # FIXME: To be removed in Automake 2.0, once we can assume autoconf # 2.70 or later. # FIXME: keep in sync with 'internal/ac-config-macro-dirs.m4'. my $ac_config_macro_dirs_fallback = 'm4_ifndef([AC_CONFIG_MACRO_DIRS], [' . 'm4_defun([_AM_CONFIG_MACRO_DIRS], [])' . 'm4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])' . '])'; # We do not operate in threaded mode. $perl_threads = 0; # Include paths for searching macros. We search macros in this order: # user-supplied directories first, then the directory containing the # automake macros, and finally the system-wide directories for # third-party macros. # @user_includes can be augmented with -I or AC_CONFIG_MACRO_DIRS. # @automake_includes can be reset with the '--automake-acdir' option. # @system_includes can be augmented with the 'dirlist' file or the # ACLOCAL_PATH environment variable, and reset with the '--system-acdir' # option. my @user_includes = (); my @automake_includes = ('/usr/share/aclocal-' . $APIVERSION); my @system_includes = ('/usr/share/aclocal'); # Whether we should copy M4 file in $user_includes[0]. my $install = 0; # --diff my @diff_command; # --dry-run my $dry_run = 0; # configure.ac or configure.in. my $configure_ac; # Output file name. my $output_file = 'aclocal.m4'; # Option --force. my $force_output = 0; # Modification time of the youngest dependency. my $greatest_mtime = 0; # Which macros have been seen. my %macro_seen = (); # Remember the order into which we scanned the files. # It's important to output the contents of aclocal.m4 in the opposite order. # (Definitions in first files we have scanned should override those from # later files. So they must appear last in the output.) my @file_order = (); # Map macro names to file names. my %map = (); # Ditto, but records the last definition of each macro as returned by --trace. my %map_traced_defs = (); # Map basenames to macro names. my %invmap = (); # Map file names to file contents. my %file_contents = (); # Map file names to file types. my %file_type = (); use constant FT_USER => 1; use constant FT_AUTOMAKE => 2; use constant FT_SYSTEM => 3; # Map file names to included files (transitively closed). my %file_includes = (); # Files which have already been added. my %file_added = (); # Files that have already been scanned. my %scanned_configure_dep = (); # Serial numbers, for files that have one. # The key is the basename of the file, # the value is the serial number represented as a list. my %serial = (); # Matches a macro definition. # AC_DEFUN([macroname], ...) # or # AC_DEFUN(macroname, ...) # When macroname is '['-quoted , we accept any character in the name, # except ']'. Otherwise macroname stops on the first ']', ',', ')', # or '\n' encountered. my $ac_defun_rx = "(?:AU_ALIAS|A[CU]_DEFUN|AC_DEFUN_ONCE)\\((?:\\[([^]]+)\\]|([^],)\n]+))"; # Matches an AC_REQUIRE line. my $ac_require_rx = "AC_REQUIRE\\((?:\\[([^]]+)\\]|([^],)\n]+))\\)"; # Matches an m4_include line. my $m4_include_rx = "(m4_|m4_s|s)include\\((?:\\[([^]]+)\\]|([^],)\n]+))\\)"; # Match a serial number. my $serial_line_rx = '^#\s*serial\s+(\S*)'; my $serial_number_rx = '^\d+(?:\.\d+)*$'; # Autoconf version. This variable is set by 'trace_used_macros'. my $ac_version; # User directory containing extra m4 files for macros definition, # as extracted from calls to the macro AC_CONFIG_MACRO_DIRS. # This variable is updated by 'trace_used_macros'. my @ac_config_macro_dirs; # If set, names a temporary file that must be erased on abnormal exit. my $erase_me; # Constants for the $ERR_LEVEL parameter of the 'scan_m4_dirs' function. use constant SCAN_M4_DIRS_SILENT => 0; use constant SCAN_M4_DIRS_WARN => 1; use constant SCAN_M4_DIRS_ERROR => 2; ################################################################ # Prototypes for all subroutines. sub add_file ($); sub add_macro ($); sub check_acinclude (); sub install_file ($$); sub list_compare (\@\@); sub parse_ACLOCAL_PATH (); sub parse_arguments (); sub reset_maps (); sub scan_configure (); sub scan_configure_dep ($); sub scan_file ($$$); sub scan_m4_dirs ($$@); sub scan_m4_files (); sub strip_redundant_includes (%); sub trace_used_macros (); sub unlink_tmp (;$); sub usage ($); sub version (); sub write_aclocal ($@); sub xmkdir_p ($); ################################################################ # Erase temporary file ERASE_ME. Handle signals. sub unlink_tmp (;$) { my ($sig) = @_; if ($sig) { verb "caught SIG$sig, bailing out"; } if (defined $erase_me && -e $erase_me && !unlink ($erase_me)) { fatal "could not remove '$erase_me': $!"; } undef $erase_me; # reraise default handler. if ($sig) { $SIG{$sig} = 'DEFAULT'; kill $sig => $$; } } $SIG{'INT'} = $SIG{'TERM'} = $SIG{'QUIT'} = $SIG{'HUP'} = 'unlink_tmp'; END { unlink_tmp } sub xmkdir_p ($) { my $dir = shift; local $@ = undef; return if -d $dir or eval { File::Path::mkpath $dir }; chomp $@; $@ =~ s/\s+at\s.*\bline\s\d+.*$//; fatal "could not create directory '$dir': $@"; } # Check macros in acinclude.m4. If one is not used, warn. sub check_acinclude () { foreach my $key (keys %map) { # FIXME: should print line number of acinclude.m4. msg ('syntax', "macro '$key' defined in acinclude.m4 but never used") if $map{$key} eq 'acinclude.m4' && ! exists $macro_seen{$key}; } } sub reset_maps () { $greatest_mtime = 0; %macro_seen = (); @file_order = (); %map = (); %map_traced_defs = (); %file_contents = (); %file_type = (); %file_includes = (); %file_added = (); %scanned_configure_dep = (); %invmap = (); %serial = (); undef &search; } # install_file ($SRC, $DESTDIR) sub install_file ($$) { my ($src, $destdir) = @_; my $dest = $destdir . "/" . basename ($src); my $diff_dest; verb "installing $src to $dest"; if ($force_output || !exists $file_contents{$dest} || $file_contents{$src} ne $file_contents{$dest}) { if (-e $dest) { msg 'note', "overwriting '$dest' with '$src'"; $diff_dest = $dest; } else { msg 'note', "installing '$dest' from '$src'"; } if (@diff_command) { if (! defined $diff_dest) { # $dest does not exist. We create an empty one just to # run diff, and we erase it afterward. Using the real # the destination file (rather than a temporary file) is # good when diff is run with options that display the # file name. # # If creating $dest fails, fall back to /dev/null. At # least one diff implementation (Tru64's) cannot deal # with /dev/null. However working around this is not # worth the trouble since nobody run aclocal on a # read-only tree anyway. $erase_me = $dest; my $f = new IO::File "> $dest"; if (! defined $f) { undef $erase_me; $diff_dest = '/dev/null'; } else { $diff_dest = $dest; $f->close; } } my @cmd = (@diff_command, $diff_dest, $src); $! = 0; verb "running: @cmd"; my $res = system (@cmd); Automake::FileUtils::handle_exec_errors "@cmd", 1 if $res; unlink_tmp; } elsif (!$dry_run) { xmkdir_p ($destdir); xsystem ('cp', $src, $dest); } } } # Compare two lists of numbers. sub list_compare (\@\@) { my @l = @{$_[0]}; my @r = @{$_[1]}; while (1) { if (0 == @l) { return (0 == @r) ? 0 : -1; } elsif (0 == @r) { return 1; } elsif ($l[0] < $r[0]) { return -1; } elsif ($l[0] > $r[0]) { return 1; } shift @l; shift @r; } } ################################################################ # scan_m4_dirs($TYPE, $ERR_LEVEL, @DIRS) # ----------------------------------------------- # Scan all M4 files installed in @DIRS for new macro definitions. # Register each file as of type $TYPE (one of the FT_* constants). # If a directory in @DIRS cannot be read: # - fail hard if $ERR_LEVEL == SCAN_M4_DIRS_ERROR # - just print a warning if $ERR_LEVEL == SCAN_M4_DIRS_WA # - continue silently if $ERR_LEVEL == SCAN_M4_DIRS_SILENT sub scan_m4_dirs ($$@) { my ($type, $err_level, @dirlist) = @_; foreach my $m4dir (@dirlist) { if (! opendir (DIR, $m4dir)) { # TODO: maybe avoid complaining only if errno == ENONENT? my $message = "couldn't open directory '$m4dir': $!"; if ($err_level == SCAN_M4_DIRS_ERROR) { fatal $message; } elsif ($err_level == SCAN_M4_DIRS_WARN) { msg ('unsupported', $message); next; } elsif ($err_level == SCAN_M4_DIRS_SILENT) { next; # Silently ignore. } else { prog_error "invalid \$err_level value '$err_level'"; } } # We reverse the directory contents so that foo2.m4 gets # used in preference to foo1.m4. foreach my $file (reverse sort grep (! /^\./, readdir (DIR))) { # Only examine .m4 files. next unless $file =~ /\.m4$/; # Skip some files when running out of srcdir. next if $file eq 'aclocal.m4'; my $fullfile = File::Spec->canonpath ("$m4dir/$file"); scan_file ($type, $fullfile, 'aclocal'); } closedir (DIR); } } # Scan all the installed m4 files and construct a map. sub scan_m4_files () { # First, scan configure.ac. It may contain macro definitions, # or may include other files that define macros. scan_file (FT_USER, $configure_ac, 'aclocal'); # Then, scan acinclude.m4 if it exists. if (-f 'acinclude.m4') { scan_file (FT_USER, 'acinclude.m4', 'aclocal'); } # Finally, scan all files in our search paths. if (@user_includes) { # Don't explore the same directory multiple times. This is here not # only for speedup purposes. We need this when the user has e.g. # specified 'ACLOCAL_AMFLAGS = -I m4' and has also set # AC_CONFIG_MACRO_DIR[S]([m4]) in configure.ac. This makes the 'm4' # directory to occur twice here and fail on the second call to # scan_m4_dirs([m4]) when the 'm4' directory doesn't exist. # TODO: Shouldn't there be rather a check in scan_m4_dirs for # @user_includes[0]? @user_includes = uniq @user_includes; # Don't complain if the first user directory doesn't exist, in case # we need to create it later (can happen if '--install' was given). scan_m4_dirs (FT_USER, $install ? SCAN_M4_DIRS_SILENT : SCAN_M4_DIRS_WARN, $user_includes[0]); scan_m4_dirs (FT_USER, SCAN_M4_DIRS_ERROR, @user_includes[1..$#user_includes]); } scan_m4_dirs (FT_AUTOMAKE, SCAN_M4_DIRS_ERROR, @automake_includes); scan_m4_dirs (FT_SYSTEM, SCAN_M4_DIRS_ERROR, @system_includes); # Construct a new function that does the searching. We use a # function (instead of just evaluating $search in the loop) so that # "die" is correctly and easily propagated if run. my $search = "sub search {\nmy \$found = 0;\n"; foreach my $key (reverse sort keys %map) { $search .= ('if (/\b\Q' . $key . '\E(?!\w)/) { add_macro ("' . $key . '"); $found = 1; }' . "\n"); } $search .= "return \$found;\n};\n"; eval $search; prog_error "$@\n search is $search" if $@; } ################################################################ # Add a macro to the output. sub add_macro ($) { my ($macro) = @_; # Ignore unknown required macros. Either they are not really # needed (e.g., a conditional AC_REQUIRE), in which case aclocal # should be quiet, or they are needed and Autoconf itself will # complain when we trace for macro usage later. return unless defined $map{$macro}; verb "saw macro $macro"; $macro_seen{$macro} = 1; add_file ($map{$macro}); } # scan_configure_dep ($file) # -------------------------- # Scan a configure dependency (configure.ac, or separate m4 files) # for uses of known macros and AC_REQUIREs of possibly unknown macros. # Recursively scan m4_included files. sub scan_configure_dep ($) { my ($file) = @_; # Do not scan a file twice. return () if exists $scanned_configure_dep{$file}; $scanned_configure_dep{$file} = 1; my $mtime = mtime $file; $greatest_mtime = $mtime if $greatest_mtime < $mtime; my $contents = exists $file_contents{$file} ? $file_contents{$file} : contents $file; my $line = 0; my @rlist = (); my @ilist = (); foreach (split ("\n", $contents)) { ++$line; # Remove comments from current line. s/\bdnl\b.*$//; s/\#.*$//; # Avoid running all the following regexes on white lines. next if /^\s*$/; while (/$m4_include_rx/go) { my $ifile = $2 || $3; # Skip missing 'sinclude'd files. next if $1 ne 'm4_' && ! -f $ifile; push @ilist, $ifile; } while (/$ac_require_rx/go) { push (@rlist, $1 || $2); } # The search function is constructed dynamically by # scan_m4_files. The last parenthetical match makes sure we # don't match things that look like macro assignments or # AC_SUBSTs. if (! &search && /(^|\s+)(AM_[A-Z0-9_]+)($|[^\]\)=A-Z0-9_])/) { # Macro not found, but AM_ prefix found. # Make this just a warning, because we do not know whether # the macro is actually used (it could be called conditionally). msg ('unsupported', "$file:$line", "macro '$2' not found in library"); } } add_macro ($_) foreach (@rlist); scan_configure_dep ($_) foreach @ilist; } # add_file ($FILE) # ---------------- # Add $FILE to output. sub add_file ($) { my ($file) = @_; # Only add a file once. return if ($file_added{$file}); $file_added{$file} = 1; scan_configure_dep $file; } # Point to the documentation for underquoted AC_DEFUN only once. my $underquoted_manual_once = 0; # scan_file ($TYPE, $FILE, $WHERE) # -------------------------------- # Scan a single M4 file ($FILE), and all files it includes. # Return the list of included files. # $TYPE is one of FT_USER, FT_AUTOMAKE, or FT_SYSTEM, depending # on where the file comes from. # $WHERE is the location to use in the diagnostic if the file # does not exist. sub scan_file ($$$) { my ($type, $file, $where) = @_; my $basename = basename $file; # Do not scan the same file twice. return @{$file_includes{$file}} if exists $file_includes{$file}; # Prevent potential infinite recursion (if two files include each other). return () if exists $file_contents{$file}; unshift @file_order, $file; $file_type{$file} = $type; fatal "$where: file '$file' does not exist" if ! -e $file; my $fh = new Automake::XFile $file; my $contents = ''; my @inc_files = (); my %inc_lines = (); my $defun_seen = 0; my $serial_seen = 0; my $serial_older = 0; while ($_ = $fh->getline) { # Ignore '##' lines. next if /^##/; $contents .= $_; my $line = $_; if ($line =~ /$serial_line_rx/go) { my $number = $1; if ($number !~ /$serial_number_rx/go) { msg ('syntax', "$file:$.", "ill-formed serial number '$number', " . "expecting a version string with only digits and dots"); } elsif ($defun_seen) { # aclocal removes all definitions from M4 file with the # same basename if a greater serial number is found. # Encountering a serial after some macros will undefine # these macros... msg ('syntax', "$file:$.", 'the serial number must appear before any macro definition'); } # We really care about serials only for non-automake macros # and when --install is used. But the above diagnostics are # made regardless of this, because not using --install is # not a reason not the fix macro files. elsif ($install && $type != FT_AUTOMAKE) { $serial_seen = 1; my @new = split (/\./, $number); verb "$file:$.: serial $number"; if (!exists $serial{$basename} || list_compare (@new, @{$serial{$basename}}) > 0) { # Delete any definition we knew from the old macro. foreach my $def (@{$invmap{$basename}}) { verb "$file:$.: ignoring previous definition of $def"; delete $map{$def}; } $invmap{$basename} = []; $serial{$basename} = \@new; } else { $serial_older = 1; } } } # Remove comments from current line. # Do not do it earlier, because the serial line is a comment. $line =~ s/\bdnl\b.*$//; $line =~ s/\#.*$//; while ($line =~ /$ac_defun_rx/go) { $defun_seen = 1; if (! defined $1) { msg ('syntax', "$file:$.", "underquoted definition of $2" . "\n run info Automake 'Extending aclocal'\n" . " or see https://www.gnu.org/software/automake/manual/" . "automake.html#Extending-aclocal") unless $underquoted_manual_once; $underquoted_manual_once = 1; } # If this macro does not have a serial and we have already # seen a macro with the same basename earlier, we should # ignore the macro (don't exit immediately so we can still # diagnose later #serial numbers and underquoted macros). $serial_older ||= ($type != FT_AUTOMAKE && !$serial_seen && exists $serial{$basename}); my $macro = $1 || $2; if (!$serial_older && !defined $map{$macro}) { verb "found macro $macro in $file: $."; $map{$macro} = $file; push @{$invmap{$basename}}, $macro; } else { # Note: we used to give an error here if we saw a # duplicated macro. However, this turns out to be # extremely unpopular. It causes actual problems which # are hard to work around, especially when you must # mix-and-match tool versions. verb "ignoring macro $macro in $file: $."; } } while ($line =~ /$m4_include_rx/go) { my $ifile = $2 || $3; # Skip missing 'sinclude'd files. next if $1 ne 'm4_' && ! -f $ifile; push (@inc_files, $ifile); $inc_lines{$ifile} = $.; } } # Ignore any file that has an old serial (or no serial if we know # another one with a serial). return () if ($serial_older || ($type != FT_AUTOMAKE && !$serial_seen && exists $serial{$basename})); $file_contents{$file} = $contents; # For some reason I don't understand, it does not work # to do "map { scan_file ($_, ...) } @inc_files" below. # With Perl 5.8.2 it undefines @inc_files. my @copy = @inc_files; my @all_inc_files = (@inc_files, map { scan_file ($type, $_, "$file:$inc_lines{$_}") } @copy); $file_includes{$file} = \@all_inc_files; return @all_inc_files; } # strip_redundant_includes (%FILES) # --------------------------------- # Each key in %FILES is a file that must be present in the output. # However some of these files might already include other files in %FILES, # so there is no point in including them another time. # This removes items of %FILES which are already included by another file. sub strip_redundant_includes (%) { my %files = @_; # Always include acinclude.m4, even if it does not appear to be used. $files{'acinclude.m4'} = 1 if -f 'acinclude.m4'; # File included by $configure_ac are redundant. $files{$configure_ac} = 1; # Files at the end of @file_order should override those at the beginning, # so it is important to preserve these trailing files. We can remove # a file A if it is going to be output before a file B that includes # file A, not the converse. foreach my $file (reverse @file_order) { next unless exists $files{$file}; foreach my $ifile (@{$file_includes{$file}}) { next unless exists $files{$ifile}; delete $files{$ifile}; verb "$ifile is already included by $file"; } } # configure.ac is implicitly included. delete $files{$configure_ac}; return %files; } sub trace_used_macros () { my %files = map { $map{$_} => 1 } keys %macro_seen; %files = strip_redundant_includes %files; # When AC_CONFIG_MACRO_DIRS is used, avoid possible spurious warnings # from autom4te about macros being "m4_require'd but not m4_defun'd"; # for more background, see: # https://lists.gnu.org/archive/html/autoconf-patches/2012-11/msg00004.html # as well as autoconf commit 'v2.69-44-g1ed0548', "warn: allow aclocal # to silence m4_require warnings". my $early_m4_code .= "m4_define([m4_require_silent_probe], [-])"; my $traces = ($ENV{AUTOM4TE} || 'autom4te'); $traces .= " --language Autoconf-without-aclocal-m4 "; $traces = "echo '$early_m4_code' | $traces - "; # Support AC_CONFIG_MACRO_DIRS also with older autoconf. # Note that we can't use '$ac_config_macro_dirs_fallback' here, because # a bug in option parsing code of autom4te 2.68 and earlier will cause # it to read standard input last, even if the "-" argument is specified # early. # FIXME: To be removed in Automake 2.0, once we can assume autoconf # 2.70 or later. $traces .= "$automake_includes[0]/internal/ac-config-macro-dirs.m4 "; # All candidate files. $traces .= join (' ', (map { "'$_'" } (grep { exists $files{$_} } @file_order))) . " "; # All candidate macros. $traces .= join (' ', (map { "--trace='$_:\$f::\$n::\${::}%'" } ('AC_DEFUN', 'AC_DEFUN_ONCE', 'AU_DEFUN', '_AM_AUTOCONF_VERSION', 'AC_CONFIG_MACRO_DIR_TRACE', # FIXME: Tracing the next two macros is a hack for # compatibility with older autoconf. Remove this in # Automake 2.0, when we can assume Autoconf 2.70 or # later. 'AC_CONFIG_MACRO_DIR', '_AM_CONFIG_MACRO_DIRS')), # Do not trace $1 for all other macros as we do # not need it and it might contains harmful # characters (like newlines). (map { "--trace='$_:\$f::\$n'" } (keys %macro_seen))); verb "running $traces $configure_ac"; my $tracefh = new Automake::XFile ("$traces $configure_ac |"); @ac_config_macro_dirs = (); my %traced = (); while ($_ = $tracefh->getline) { chomp; my ($file, $macro, $arg1) = split (/::/); $traced{$macro} = 1 if exists $macro_seen{$macro}; if ($macro eq 'AC_DEFUN' || $macro eq 'AC_DEFUN_ONCE' || $macro eq 'AU_DEFUN') { $map_traced_defs{$arg1} = $file; } elsif ($macro eq '_AM_AUTOCONF_VERSION') { $ac_version = $arg1; } elsif ($macro eq 'AC_CONFIG_MACRO_DIR_TRACE') { push @ac_config_macro_dirs, $arg1; } # FIXME: We still need to trace AC_CONFIG_MACRO_DIR # for compatibility with older autoconf. Remove this # once we can assume Autoconf 2.70 or later. elsif ($macro eq 'AC_CONFIG_MACRO_DIR') { @ac_config_macro_dirs = ($arg1); } # FIXME:This is an hack for compatibility with older autoconf. # Remove this once we can assume Autoconf 2.70 or later. elsif ($macro eq '_AM_CONFIG_MACRO_DIRS') { # Empty leading/trailing fields might be produced by split, # hence the grep is really needed. push @ac_config_macro_dirs, grep (/./, (split /\s+/, $arg1)); } } # FIXME: in Autoconf >= 2.70, AC_CONFIG_MACRO_DIR calls # AC_CONFIG_MACRO_DIR_TRACE behind the scenes, which could # leave unwanted duplicates in @ac_config_macro_dirs. # Remove this in Automake 2.0, when we'll stop tracing # AC_CONFIG_MACRO_DIR explicitly. @ac_config_macro_dirs = uniq @ac_config_macro_dirs; $tracefh->close; return %traced; } sub scan_configure () { # Make sure we include acinclude.m4 if it exists. if (-f 'acinclude.m4') { add_file ('acinclude.m4'); } scan_configure_dep ($configure_ac); } ################################################################ # Write output. # Return 0 iff some files were installed locally. sub write_aclocal ($@) { my ($output_file, @macros) = @_; my $output = ''; my %files = (); # Get the list of files containing definitions for the macros used. # (Filter out unused macro definitions with $map_traced_defs. This # can happen when an Autoconf macro is conditionally defined: # aclocal sees the potential definition, but this definition is # actually never processed and the Autoconf implementation is used # instead.) for my $m (@macros) { $files{$map{$m}} = 1 if (exists $map_traced_defs{$m} && $map{$m} eq $map_traced_defs{$m}); } # Do not explicitly include a file that is already indirectly included. %files = strip_redundant_includes %files; my $installed = 0; for my $file (grep { exists $files{$_} } @file_order) { # Check the time stamp of this file, and of all files it includes. for my $ifile ($file, @{$file_includes{$file}}) { my $mtime = mtime $ifile; $greatest_mtime = $mtime if $greatest_mtime < $mtime; } # If the file to add looks like outside the project, copy it # to the output. The regex catches filenames starting with # things like '/', '\', or 'c:\'. if ($file_type{$file} != FT_USER || $file =~ m,^(?:\w:)?[\\/],) { if (!$install || $file_type{$file} != FT_SYSTEM) { # Copy the file into aclocal.m4. $output .= $file_contents{$file} . "\n"; } else { # Install the file (and any file it includes). my $dest; for my $ifile (@{$file_includes{$file}}, $file) { install_file ($ifile, $user_includes[0]); } $installed = 1; } } else { # Otherwise, simply include the file. $output .= "m4_include([$file])\n"; } } if ($installed) { verb "running aclocal anew, because some files were installed locally"; return 0; } # Nothing to output?! # FIXME: Shouldn't we diagnose this? return 1 if ! length ($output); if ($ac_version) { # Do not use "$output_file" here for the same reason we do not # use it in the header below. autom4te will output the name of # the file in the diagnostic anyway. $output = "m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [$ac_version],, [m4_warning([this file was generated for autoconf $ac_version. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) $output"; } # We used to print "# $output_file generated automatically etc." But # this creates spurious differences when using autoreconf. Autoreconf # creates aclocal.m4t and then rename it to aclocal.m4, but the # rebuild rules generated by Automake create aclocal.m4 directly -- # this would gives two ways to get the same file, with a different # name in the header. $output = "# generated automatically by aclocal $VERSION -*- Autoconf -*- # Copyright (C) 1996-$RELEASE_YEAR Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. $ac_config_macro_dirs_fallback $output"; # We try not to update $output_file unless necessary, because # doing so invalidate Autom4te's cache and therefore slows down # tools called after aclocal. # # We need to overwrite $output_file in the following situations. # * The --force option is in use. # * One of the dependencies is younger. # (Not updating $output_file in this situation would cause # make to call aclocal in loop.) # * The contents of the current file are different from what # we have computed. if (!$force_output && $greatest_mtime < mtime ($output_file) && $output eq contents ($output_file)) { verb "$output_file unchanged"; return 1; } verb "writing $output_file"; if (!$dry_run) { if (-e $output_file && !unlink $output_file) { fatal "could not remove '$output_file': $!"; } my $out = new Automake::XFile "> $output_file"; print $out $output; } return 1; } ################################################################ # Print usage and exit. sub usage ($) { my ($status) = @_; print <<'EOF'; Usage: aclocal [OPTION]... Generate 'aclocal.m4' by scanning 'configure.ac' or 'configure.in' Options: --automake-acdir=DIR directory holding automake-provided m4 files --system-acdir=DIR directory holding third-party system-wide files --diff[=COMMAND] run COMMAND [diff -u] on M4 files that would be changed (implies --install and --dry-run) --dry-run pretend to, but do not actually update any file --force always update output file --help print this help, then exit -I DIR add directory to search list for .m4 files --install copy third-party files to the first -I directory --output=FILE put output in FILE (default aclocal.m4) --print-ac-dir print name of directory holding system-wide third-party m4 files, then exit --verbose don't be silent --version print version number, then exit -W, --warnings=CATEGORY report the warnings falling in CATEGORY Warning categories include: syntax dubious syntactic constructs (default) unsupported unknown macros (default) all all the warnings (default) no-CATEGORY turn off warnings in CATEGORY none turn off all the warnings error treat warnings as errors Report bugs to <bug-automake@gnu.org>. GNU Automake home page: <http://www.gnu.org/software/automake/>. General help using GNU software: <https://www.gnu.org/gethelp/>. EOF exit $status; } # Print version and exit. sub version () { print <<EOF; aclocal (GNU $PACKAGE) $VERSION Copyright (C) $RELEASE_YEAR Free Software Foundation, Inc. License GPLv2+: GNU GPL version 2 or later <https://gnu.org/licenses/gpl-2.0.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Tom Tromey <tromey\@redhat.com> and Alexandre Duret-Lutz <adl\@gnu.org>. EOF exit 0; } # Parse command line. sub parse_arguments () { my $print_and_exit = 0; my $diff_command; my %cli_options = ( 'help' => sub { usage(0); }, 'version' => \&version, 'system-acdir=s' => sub { shift; @system_includes = @_; }, 'automake-acdir=s' => sub { shift; @automake_includes = @_; }, 'diff:s' => \$diff_command, 'dry-run' => \$dry_run, 'force' => \$force_output, 'I=s' => \@user_includes, 'install' => \$install, 'output=s' => \$output_file, 'print-ac-dir' => \$print_and_exit, 'verbose' => sub { setup_channel 'verb', silent => 0; }, 'W|warnings=s' => \&parse_warnings, ); use Automake::Getopt (); Automake::Getopt::parse_options %cli_options; if (@ARGV > 0) { fatal ("non-option arguments are not accepted: '$ARGV[0]'.\n" . "Try '$0 --help' for more information."); } if ($print_and_exit) { print "@system_includes\n"; exit 0; } if (defined $diff_command) { $diff_command = 'diff -u' if $diff_command eq ''; @diff_command = split (' ', $diff_command); $install = 1; $dry_run = 1; } # Finally, adds any directory listed in the 'dirlist' file. if (@system_includes && open (DIRLIST, "$system_includes[0]/dirlist")) { while (<DIRLIST>) { # Ignore '#' lines. next if /^#/; # strip off newlines and end-of-line comments s/\s*\#.*$//; chomp; foreach my $dir (glob) { push (@system_includes, $dir) if -d $dir; } } close (DIRLIST); } } # Add any directory listed in the 'ACLOCAL_PATH' environment variable # to the list of system include directories. sub parse_ACLOCAL_PATH () { return if not defined $ENV{"ACLOCAL_PATH"}; # Directories in ACLOCAL_PATH should take precedence over system # directories, so we use unshift. However, directories that # come first in ACLOCAL_PATH take precedence over directories # coming later, which is why the result of split is reversed. foreach my $dir (reverse split /:/, $ENV{"ACLOCAL_PATH"}) { unshift (@system_includes, $dir) if $dir ne '' && -d $dir; } } ################################################################ # Don't refer to installation directories from the build environment if (exists $ENV{"AUTOMAKE_UNINSTALLED"}) { @automake_includes = (); @system_includes = (); } @automake_includes = ($ENV{"ACLOCAL_AUTOMAKE_DIR"}) if (exists $ENV{"ACLOCAL_AUTOMAKE_DIR"}); parse_WARNINGS; # Parse the WARNINGS environment variable. parse_arguments; parse_ACLOCAL_PATH; $configure_ac = require_configure_ac; # We may have to rerun aclocal if some file have been installed, but # it should not happen more than once. The reason we must run again # is that once the file has been moved from /usr/share/aclocal/ to the # local m4/ directory it appears at a new place in the search path, # hence it should be output at a different position in aclocal.m4. If # we did not rerun aclocal, the next run of aclocal would produce a # different aclocal.m4. my $loop = 0; my $rerun_due_to_macrodir = 0; while (1) { ++$loop; prog_error "too many loops" if $loop > 2 + $rerun_due_to_macrodir; reset_maps; scan_m4_files; scan_configure; last if $exit_code; my %macro_traced = trace_used_macros; if (!$rerun_due_to_macrodir && @ac_config_macro_dirs) { # The directory specified in calls to the AC_CONFIG_MACRO_DIRS # m4 macro (if any) must go after the user includes specified # explicitly with the '-I' option. push @user_includes, @ac_config_macro_dirs; # We might have to scan some new directory of .m4 files. $rerun_due_to_macrodir++; next; } if ($install && !@user_includes) { fatal "installation of third-party macros impossible without " . "-I options nor AC_CONFIG_MACRO_DIR{,S} m4 macro(s)"; } last if write_aclocal ($output_file, keys %macro_traced); last if $dry_run; } check_acinclude; exit $exit_code;
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