PATH:
usr
/
bin
#!/usr/bin/perl -w # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 5.004; use strict; package apxs; ## ## Configuration ## # are we building in a cross compile environment? If so, destdir contains # the base directory of the cross compiled environment, otherwise destdir # is the empty string. my $destdir = ""; my $ddi = rindex($0, "/usr/bin"); if ($ddi >= 0) { $destdir = substr($0, 0, $ddi); } my %config_vars = (); my $installbuilddir = "/usr/lib64/apache2/build"; get_config_vars($destdir . "$installbuilddir/config_vars.mk",\%config_vars); # read the configuration variables once my $prefix = get_vars("prefix"); my $CFG_PREFIX = $prefix; my $exec_prefix = get_vars("exec_prefix"); my $datadir = get_vars("datadir"); my $localstatedir = get_vars("localstatedir"); my $CFG_TARGET = get_vars("progname"); my $CFG_SYSCONFDIR = get_vars("sysconfdir"); my $CFG_CFLAGS = join ' ', map { get_vars($_) } qw(SHLTCFLAGS CFLAGS NOTEST_CPPFLAGS EXTRA_CPPFLAGS EXTRA_CFLAGS); my $CFG_LDFLAGS = join ' ', map { get_vars($_) } qw(LDFLAGS NOTEST_LDFLAGS SH_LDFLAGS); my $includedir = $destdir . get_vars("includedir"); my $CFG_INCLUDEDIR = eval qq("$includedir"); my $CFG_CC = get_vars("CC"); my $libexecdir = $destdir . get_vars("libexecdir"); my $libdir = get_vars("libdir"); my $CFG_LIBEXECDIR = eval qq("$libexecdir"); my $sbindir = get_vars("sbindir"); my $CFG_SBINDIR = eval qq("$sbindir"); my $ltflags = $ENV{'LTFLAGS'}; $ltflags or $ltflags = "--silent"; my %internal_vars = map {$_ => 1} qw(TARGET CC CFLAGS CFLAGS_SHLIB LD_SHLIB LDFLAGS_SHLIB LIBS_SHLIB PREFIX SBINDIR INCLUDEDIR LIBEXECDIR SYSCONFDIR); ## ## parse argument line ## # defaults for parameters my $opt_n = ''; my $opt_g = ''; my $opt_c = 0; my $opt_o = ''; my @opt_D = (); my @opt_I = (); my @opt_L = (); my @opt_l = (); my @opt_W = (); my @opt_S = (); my $opt_e = 0; my $opt_i = 0; my $opt_a = 0; my $opt_A = 0; my $opt_q = 0; my $opt_h = 0; my $opt_p = 0; my $opt_v = 0; # this subroutine is derived from Perl's getopts.pl with the enhancement of # the "+" metacharacter at the format string to allow a list to be built by # subsequent occurrences of the same option. sub Getopts { my ($argumentative, @ARGV) = @_; my $errs = 0; local $_; my @args = split / */, $argumentative; while (@ARGV && ($_ = $ARGV[0]) =~ /^-(.)(.*)/) { my ($first, $rest) = ($1,$2); if ($_ =~ m|^--$|) { shift @ARGV; last; } my $pos = index($argumentative,$first); if ($pos >= 0) { if ($pos < $#args && $args[$pos+1] eq ':') { shift @ARGV; if ($rest eq '') { unless (@ARGV) { error("Incomplete option: $first (needs an argument)"); $errs++; } $rest = shift(@ARGV); } eval "\$opt_$first = \$rest;"; } elsif ($pos < $#args && $args[$pos+1] eq '+') { shift @ARGV; if ($rest eq '') { unless (@ARGV) { error("Incomplete option: $first (needs an argument)"); $errs++; } $rest = shift(@ARGV); } eval "push(\@opt_$first, \$rest);"; } else { eval "\$opt_$first = 1"; if ($rest eq '') { shift(@ARGV); } else { $ARGV[0] = "-$rest"; } } } else { error("Unknown option: $first"); $errs++; if ($rest ne '') { $ARGV[0] = "-$rest"; } else { shift(@ARGV); } } } return ($errs == 0, @ARGV); } sub usage { print STDERR "Usage: apxs -g [-S <var>=<val>] -n <modname>\n"; print STDERR " apxs -q [-v] [-S <var>=<val>] [<query> ...]\n"; print STDERR " apxs -c [-S <var>=<val>] [-o <dsofile>] [-D <name>[=<value>]]\n"; print STDERR " [-I <incdir>] [-L <libdir>] [-l <libname>] [-Wc,<flags>]\n"; print STDERR " [-Wl,<flags>] [-p] <files> ...\n"; print STDERR " apxs -i [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n"; print STDERR " apxs -e [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n"; exit(1); } # option handling my $rc; ($rc, @ARGV) = &Getopts("qn:gco:I+D+L+l+W+S+eiaApv", @ARGV); &usage if ($rc == 0); &usage if ($#ARGV == -1 and not $opt_g and not $opt_q); &usage if (not $opt_q and not ($opt_g and $opt_n) and not $opt_i and not $opt_c and not $opt_e); # argument handling my @args = @ARGV; my $name = 'unknown'; $name = $opt_n if ($opt_n ne ''); if (@opt_S) { my ($opt_S); foreach $opt_S (@opt_S) { if ($opt_S =~ m/^([^=]+)=(.*)$/) { my ($var) = $1; my ($val) = $2; my $oldval = eval "\$CFG_$var"; unless ($var and $oldval) { print STDERR "apxs:Error: no config variable $var\n"; &usage; } eval "\$CFG_${var}=\"${val}\""; } else { print STDERR "apxs:Error: malformatted -S option\n"; &usage; } } } ## ## Initial shared object support check ## unless ("yes" eq "yes") { error("Sorry, no shared object support for Apache"); error("available under your platform. Make sure"); error("the Apache module mod_so is compiled into"); error("the server binary."); exit 1; } sub get_config_vars{ my ($file, $rh_config) = @_; open IN, $file or die "cannot open $file: $!"; while (<IN>){ if (/^\s*(.*?)\s*=\s*(.*)$/){ $rh_config->{$1} = $2; } } close IN; } sub get_vars { my $result = ''; my $ok = 0; my $arg; foreach $arg (@_) { if (exists $config_vars{$arg} or exists $config_vars{lc $arg}) { my $val = exists $config_vars{$arg} ? $config_vars{$arg} : $config_vars{lc $arg}; $val =~ s/[()]//g; $result .= eval "qq($val)" if defined $val; $result .= ";;"; $ok = 1; } if (not $ok) { if (exists $internal_vars{$arg} or exists $internal_vars{lc $arg}) { my $val = exists $internal_vars{$arg} ? $arg : lc $arg; $val = eval "\$CFG_$val"; $result .= eval "qq($val)" if defined $val; $result .= ";;"; $ok = 1; } if (not $ok) { error("Invalid query string `$arg'"); exit(1); } } } $result =~ s|;;$||; return $result; } ## ## Operation ## # helper function for executing a list of # system command with return code checks sub execute_cmds { my (@cmds) = @_; my ($cmd, $rc); foreach $cmd (@cmds) { notice($cmd); $rc = system $cmd; if ($rc) { error(sprintf "Command failed with rc=%d\n", $rc << 8); exit 1 ; } } } if ($opt_g) { ## ## SAMPLE MODULE SOURCE GENERATION ## if (-d $name) { error("Directory `$name' already exists. Remove first"); exit(1); } my $data = join('', <DATA>); $data =~ s|%NAME%|$name|sg; $data =~ s|%TARGET%|$CFG_TARGET|sg; $data =~ s|%PREFIX%|$prefix|sg; $data =~ s|%INSTALLBUILDDIR%|$installbuilddir|sg; $data =~ s|%LIBDIR%|$libdir|sg; my ($mkf, $mods, $src) = ($data =~ m|^(.+)-=#=-\n(.+)-=#=-\n(.+)|s); notice("Creating [DIR] $name"); system("mkdir $name"); notice("Creating [FILE] $name/Makefile"); open(FP, ">${name}/Makefile") || die; print FP $mkf; close(FP); notice("Creating [FILE] $name/modules.mk"); open(FP, ">${name}/modules.mk") || die; print FP $mods; close(FP); notice("Creating [FILE] $name/mod_$name.c"); open(FP, ">${name}/mod_${name}.c") || die; print FP $src; close(FP); notice("Creating [FILE] $name/.deps"); system("touch ${name}/.deps"); exit(0); } if ($opt_q) { ## ## QUERY INFORMATION ## my $result; if ($#args >= 0) { $result = get_vars(@args); print "$result\n"; } else { # -q without var name prints all variables and their values # Additional -v pretty-prints output if ($opt_v) { # Variable names in alphabetic order my @vars = sort {uc($a) cmp uc($b)} keys %config_vars; # Make the left column as wide as the longest variable name my $width = 0; foreach (@vars) { my $l = length $_; $width = $l unless ($l <= $width); } foreach (@vars) { printf "%-${width}s = %s\n", $_, $config_vars{$_}; } } else { # Unprettified name=value list foreach (keys %config_vars) { print "$_=$config_vars{$_}\n"; } } } } my $apr_config = $destdir . get_vars("APR_CONFIG"); if (! -x "$apr_config") { error("$apr_config not found!"); exit(1); } my $apr_major_version = (split /\./, `$apr_config --version`)[0]; my $apu_config = ""; if ($apr_major_version < 2) { $apu_config = $destdir . get_vars("APU_CONFIG"); if (! -x "$apu_config") { error("$apu_config not found!"); exit(1); } } my $libtool = `$apr_config --apr-libtool`; chomp($libtool); my $apr_includedir = `$apr_config --includes`; chomp($apr_includedir); my $apu_includedir = ""; if ($apr_major_version < 2) { $apu_includedir = `$apu_config --includes`; chomp($apu_includedir); } if ($opt_c) { ## ## SHARED OBJECT COMPILATION ## # split files into sources and objects my @srcs = (); my @objs = (); my $f; foreach $f (@args) { if ($f =~ m|\.c$|) { push(@srcs, $f); } else { push(@objs, $f); } } # determine output file my $dso_file; if ($opt_o eq '') { if ($#srcs > -1) { $dso_file = $srcs[0]; $dso_file =~ s|\.[^.]+$|.la|; } elsif ($#objs > -1) { $dso_file = $objs[0]; $dso_file =~ s|\.[^.]+$|.la|; } else { $dso_file = "mod_unknown.la"; } } else { $dso_file = $opt_o; $dso_file =~ s|\.[^.]+$|.la|; } # create compilation commands my @cmds = (); my $opt = ''; my ($opt_Wc, $opt_I, $opt_D); foreach $opt_Wc (@opt_W) { $opt .= "$1 " if ($opt_Wc =~ m|^\s*c,(.*)$|); } foreach $opt_I (@opt_I) { $opt .= "-I$opt_I "; } foreach $opt_D (@opt_D) { $opt .= "-D$opt_D "; } my $cflags = "$CFG_CFLAGS"; my $s; my $mod; foreach $s (@srcs) { my $slo = $s; $slo =~ s|\.c$|.slo|; my $lo = $s; $lo =~ s|\.c$|.lo|; my $la = $s; $la =~ s|\.c$|.la|; my $o = $s; $o =~ s|\.c$|.o|; push(@cmds, "$libtool $ltflags --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $apr_includedir $apu_includedir $opt -c -o $lo $s && touch $slo"); unshift(@objs, $lo); } # create link command my $o; my $lo; foreach $o (@objs) { $lo .= " $o"; } my ($opt_Wl, $opt_L, $opt_l); $opt = ''; foreach $opt_Wl (@opt_W) { $opt .= "$1 " if ($opt_Wl =~ m|^\s*l,(.*)$|); } foreach $opt_L (@opt_L) { $opt .= " -L$opt_L"; } foreach $opt_l (@opt_l) { $opt .= " -l$opt_l"; } my $ldflags = "$CFG_LDFLAGS"; if ($opt_p == 1) { my $apr_libs=`$apr_config --cflags --ldflags --link-libtool --libs`; chomp($apr_libs); my $apu_libs=""; if ($apr_major_version < 2) { $apu_libs=`$apu_config --ldflags --link-libtool --libs`; chomp($apu_libs); } $opt .= " ".$apu_libs." ".$apr_libs; } else { my $apr_ldflags=`$apr_config --ldflags`; chomp($apr_ldflags); $opt .= " -rpath $CFG_LIBEXECDIR -module -avoid-version $apr_ldflags"; } push(@cmds, "$libtool $ltflags --mode=link $CFG_CC $ldflags -o $dso_file $opt $lo"); # execute the commands &execute_cmds(@cmds); # allow one-step compilation and installation if ($opt_i or $opt_e) { @args = ( $dso_file ); } } if ($opt_i or $opt_e) { ## ## SHARED OBJECT INSTALLATION ## # determine installation commands # and corresponding LoadModule directive my @lmd = (); my @cmds = (); my $f; foreach $f (@args) { # ack all potential gcc, hp/ux, win32+os2+aix and os/x extensions if ($f !~ m#(\.so$|\.la$|\.sl$|\.dll$|\.dylib$|)#) { error("file $f is not a shared object"); exit(1); } my $t = $f; $t =~ s|^.+/([^/]+)$|$1|; # use .so unambigiously for installed shared library modules $t =~ s|\.[^./\\]+$|\.so|; if ($opt_i) { push(@cmds, $destdir . "$installbuilddir/instdso.sh SH_LIBTOOL='" . "$libtool' $f $CFG_LIBEXECDIR"); push(@cmds, "chmod 755 $CFG_LIBEXECDIR/$t"); } # determine module symbolname and filename my $filename = ''; if ($name eq 'unknown') { $name = ''; my $base = $f; $base =~ s|\.[^.]+$||; if (-f "$base.c") { open(FP, "<$base.c"); my $content = join('', <FP>); close(FP); if ($content =~ m|.*AP_DECLARE_MODULE\s*\(\s*([a-zA-Z0-9_]+)\s*\)\s*=.*|s || $content =~ m|.*module\s+(?:AP_MODULE_DECLARE_DATA\s+)?([a-zA-Z0-9_]+)_module\s*=\s*.*|s) { $name = "$1"; $filename = "$base.c"; $filename =~ s|^[^/]+/||; } } if ($name eq '') { if ($base =~ m|.*mod_([a-zA-Z0-9_]+)\..+|) { $name = "$1"; $filename = $base; $filename =~ s|^[^/]+/||; } } if ($name eq '') { error("Sorry, cannot determine bootstrap symbol name"); error("Please specify one with option `-n'"); exit(1); } } if ($filename eq '') { $filename = "mod_${name}.c"; } my $dir = $CFG_LIBEXECDIR; $dir =~ s|^$CFG_PREFIX/?||; $dir =~ s|(.)$|$1/|; $t =~ s|\.la$|.so|; push(@lmd, sprintf("LoadModule %-18s %s", "${name}_module", "$dir$t")); } # execute the commands &execute_cmds(@cmds); # activate module via LoadModule/AddModule directive if ($opt_a or $opt_A) { my $lmd; my $c = ''; $c = '#' if ($opt_A); foreach $lmd (@lmd) { my $what = $opt_A ? "preparing" : "activating"; $lmd =~ m|LoadModule\s+(.+?)_module.*|; my $modname = $1; my $fname = "$CFG_SYSCONFDIR.modules.d/mod_$modname.conf"; notice("[$what module `$modname' in $fname]"); if (open(FP, ">$fname.new")) { print FP "$c$lmd"; close(FP); system("cp -b --suffix=.bak $fname.new $fname && " . "rm $fname.new"); } else { notice("unable to open configuration file"); } } } } sub error{ print STDERR "apxs:Error: $_[0].\n"; } sub notice{ print STDERR "$_[0]\n"; } ##EOF## __DATA__ ## ## Makefile -- Build procedure for sample %NAME% Apache module ## Autogenerated via ``apxs -n %NAME% -g''. ## builddir=. top_srcdir=%PREFIX% top_builddir=%LIBDIR%/apache2 include %INSTALLBUILDDIR%/special.mk # the used tools APACHECTL=apachectl # additional defines, includes and libraries #DEFS=-Dmy_define=my_value #INCLUDES=-Imy/include/dir #LIBS=-Lmy/lib/dir -lmylib # the default target all: local-shared-build # install the shared object file into Apache install: install-modules-yes # cleanup clean: -rm -f mod_%NAME%.o mod_%NAME%.lo mod_%NAME%.slo mod_%NAME%.la # simple test test: reload lynx -mime_header http://localhost/%NAME% # install and activate shared object by reloading Apache to # force a reload of the shared object file reload: install restart # the general Apache start/restart/stop # procedures start: $(APACHECTL) start restart: $(APACHECTL) restart stop: $(APACHECTL) stop -=#=- mod_%NAME%.la: mod_%NAME%.slo $(SH_LINK) -rpath $(libexecdir) -module -avoid-version mod_%NAME%.lo DISTCLEAN_TARGETS = modules.mk shared = mod_%NAME%.la -=#=- /* ** mod_%NAME%.c -- Apache sample %NAME% module ** [Autogenerated via ``apxs -n %NAME% -g''] ** ** To play with this sample module first compile it into a ** DSO file and install it into Apache's modules directory ** by running: ** ** $ apxs -c -i mod_%NAME%.c ** ** Then activate it in Apache's %TARGET%.conf file for instance ** for the URL /%NAME% in as follows: ** ** # %TARGET%.conf ** LoadModule %NAME%_module modules/mod_%NAME%.so ** <Location /%NAME%> ** SetHandler %NAME% ** </Location> ** ** Then after restarting Apache via ** ** $ apachectl restart ** ** you immediately can request the URL /%NAME% and watch for the ** output of this module. This can be achieved for instance via: ** ** $ lynx -mime_header http://localhost/%NAME% ** ** The output should be similar to the following one: ** ** HTTP/1.1 200 OK ** Date: Tue, 31 Mar 1998 14:42:22 GMT ** Server: Apache/1.3.4 (Unix) ** Connection: close ** Content-Type: text/html ** ** The sample page from mod_%NAME%.c */ #include "httpd.h" #include "http_config.h" #include "http_protocol.h" #include "ap_config.h" /* The sample content handler */ static int %NAME%_handler(request_rec *r) { if (strcmp(r->handler, "%NAME%")) { return DECLINED; } r->content_type = "text/html"; if (!r->header_only) ap_rputs("The sample page from mod_%NAME%.c\n", r); return OK; } static void %NAME%_register_hooks(apr_pool_t *p) { ap_hook_handler(%NAME%_handler, NULL, NULL, APR_HOOK_MIDDLE); } /* Dispatch list for API hooks */ module AP_MODULE_DECLARE_DATA %NAME%_module = { STANDARD20_MODULE_STUFF, NULL, /* create per-dir config structures */ NULL, /* merge per-dir config structures */ NULL, /* create per-server config structures */ NULL, /* merge per-server config structures */ NULL, /* table of config file commands */ %NAME%_register_hooks /* register hooks */ };
[+]
..
[-] stream
[edit]
[-] autom4te
[edit]
[-] icu-config
[edit]
[-] perlbug
[edit]
[-] mysqlcheck
[edit]
[-] gdk-pixbuf-query-loaders-64
[edit]
[-] pwscore
[edit]
[-] nf-log
[edit]
[-] nl-route-delete
[edit]
[-] sg_senddiag
[edit]
[-] icu-config-64
[edit]
[-] httxt2dbm
[edit]
[-] systemd-sysext
[edit]
[-] udevadm
[edit]
[-] growpart
[edit]
[-] compile_et
[edit]
[-] sg_safte
[edit]
[-] mysqlbinlog
[edit]
[-] btrace
[edit]
[-] myisamlog
[edit]
[-] python3-html2text
[edit]
[-] tbl
[edit]
[-] diff
[edit]
[-] xmlcatalog
[edit]
[-] glib-compile-resources
[edit]
[-] systemctl
[edit]
[-] fc-pattern
[edit]
[-] ab
[edit]
[-] gpic
[edit]
[-] dos2unix
[edit]
[-] ranlib
[edit]
[-] xdg-dbus-proxy
[edit]
[-] sg_sync
[edit]
[-] man
[edit]
[-] nl
[edit]
[-] mysqldump
[edit]
[-] rev
[edit]
[-] pidof
[edit]
[-] ansible-config
[edit]
[-] passwd
[edit]
[-] captoinfo
[edit]
[-] ansible-console
[edit]
[-] ssh-add
[edit]
[-] watch
[edit]
[-] zmore
[edit]
[-] rvi
[edit]
[-] mountpoint
[edit]
[-] osinfo-db-import
[edit]
[-] mysql_secure_installation
[edit]
[-] gv2gxl
[edit]
[-] kbdinfo
[edit]
[-] compare
[edit]
[-] ulimit
[edit]
[-] l2ping
[edit]
[-] nail
[edit]
[-] sg
[edit]
[-] systemd-machine-id-setup
[edit]
[-] sg_stream_ctl
[edit]
[-] sudoreplay
[edit]
[-] grub2-menulst2cfg
[edit]
[-] readlink
[edit]
[-] pip
[edit]
[-] man.man-db
[edit]
[-] jsondiff
[edit]
[-] gpgme-json
[edit]
[-] ea-php83-pecl
[edit]
[-] vdosetuuid
[edit]
[-] sg_get_elem_status
[edit]
[-] sg_xcopy
[edit]
[-] sh
[edit]
[-] ea-php82
[edit]
[-] recode-sr-latin
[edit]
[-] filan
[edit]
[-] gpg
[edit]
[-] c++
[edit]
[-] upower
[edit]
[-] ionice
[edit]
[-] sss_ssh_authorizedkeys
[edit]
[-] os-prober
[edit]
[-] ld.bfd
[edit]
[-] evmctl
[edit]
[-] ssh-keyscan
[edit]
[-] grub2-glue-efi
[edit]
[-] command
[edit]
[-] hostnamectl
[edit]
[-] grep
[edit]
[-] screen
[edit]
[-] xdg-desktop-menu
[edit]
[-] nl-neigh-list
[edit]
[-] sg_ses
[edit]
[-] pip-3.9
[edit]
[-] lsmcli
[edit]
[-] pngfix
[edit]
[-] mktemp
[edit]
[-] corelist
[edit]
[-] cockpit-bridge
[edit]
[-] pmap
[edit]
[-] unix2mac
[edit]
[-] cl-linksafe-reconfigure
[edit]
[-] repotrack
[edit]
[-] systemd-tmpfiles
[edit]
[-] setfont
[edit]
[-] vdodumpconfig
[edit]
[-] mysqlimport
[edit]
[-] x86_64
[edit]
[-] git-upload-pack
[edit]
[-] python3-config
[edit]
[-] perl
[edit]
[-] msgexec
[edit]
[-] shred
[edit]
[-] gpgv2
[edit]
[-] pydoc
[edit]
[-] bzcat
[edit]
[-] dmesg
[edit]
[-] zip
[edit]
[-] bluemoon
[edit]
[-] ansible
[edit]
[-] verify_blkparse
[edit]
[-] composite
[edit]
[-] slencheck
[edit]
[-] false
[edit]
[-] ps
[edit]
[-] ptargrep
[edit]
[-] yum-config-manager
[edit]
[-] gc
[edit]
[-] formail
[edit]
[-] hb-ot-shape-closure
[edit]
[-] scl_enabled
[edit]
[-] mapscrn
[edit]
[-] chmod
[edit]
[-] dpkg
[edit]
[-] pigz
[edit]
[-] setarch
[edit]
[-] preconv
[edit]
[-] hex2hcd
[edit]
[-] lchfn
[edit]
[-] basename
[edit]
[-] osql
[edit]
[-] canberra-gtk-play
[edit]
[-] prove
[edit]
[-] xdg-email
[edit]
[-] instmodsh
[edit]
[-] sg_read_long
[edit]
[-] sotruss
[edit]
[-] mdig
[edit]
[-] gpg-wks-server
[edit]
[-] podchecker
[edit]
[-] btmgmt
[edit]
[-] flex
[edit]
[-] chgrp
[edit]
[-] usb-devices
[edit]
[-] grub2-syslinux2cfg
[edit]
[-] systemd-socket-activate
[edit]
[-] rm
[edit]
[-] update-ca-trust
[edit]
[-] ipcalc
[edit]
[-] iptc
[edit]
[-] printf
[edit]
[-] fc-match
[edit]
[-] ea-php82-pecl
[edit]
[-] doveconf
[edit]
[-] bootconfig
[edit]
[-] unix2dos
[edit]
[-] zless
[edit]
[-] zcat
[edit]
[-] xgettext
[edit]
[-] sasl2-sample-client
[edit]
[-] bc
[edit]
[-] csplit
[edit]
[-] aulast
[edit]
[-] cloud-init
[edit]
[-] sg_read_block_limits
[edit]
[-] nf-queue
[edit]
[-] lsof
[edit]
[-] stunnel
[edit]
[-] display
[edit]
[-] autoscan
[edit]
[-] groff
[edit]
[-] fc-query
[edit]
[-] gdbmtool
[edit]
[-] python3.9-config
[edit]
[-] lsns
[edit]
[-] cc
[edit]
[-] bzegrep
[edit]
[-] colrm
[edit]
[-] setterm
[edit]
[-] column
[edit]
[-] innochecksum
[edit]
[-] osinfo-detect
[edit]
[-] yum-debug-restore
[edit]
[-] dirname
[edit]
[-] krb5-config
[edit]
[-] gapplication
[edit]
[-] tclsh8.6
[edit]
[-] xdg-screensaver
[edit]
[-] keyctl
[edit]
[-] cpp
[edit]
[-] gpgrt-config
[edit]
[-] tput
[edit]
[-] ssh-agent
[edit]
[-] msggrep
[edit]
[-] dovecot-sysreport
[edit]
[-] uniq
[edit]
[-] dbus-uuidgen
[edit]
[-] getopts
[edit]
[-] myisam_ftdump
[edit]
[-] lscpu
[edit]
[-] vdoforcerebuild
[edit]
[-] g++
[edit]
[-] yum-groups-manager
[edit]
[-] zipcloak
[edit]
[-] xzless
[edit]
[-] nl-monitor
[edit]
[-] perror
[edit]
[-] odbc_config
[edit]
[-] nslookup
[edit]
[-] rpm
[edit]
[-] dbus-broker-launch
[edit]
[-] wmf2svg
[edit]
[-] sg_copy_results
[edit]
[-] mkfifo
[edit]
[-] dpkg-statoverride
[edit]
[-] dpkg-deb
[edit]
[-] choom
[edit]
[-] sg_write_x
[edit]
[-] su
[edit]
[-] nsenter
[edit]
[-] dbilogstrip
[edit]
[-] pkcon
[edit]
[-] autopoint
[edit]
[-] ci
[edit]
[-] sg_get_lba_status
[edit]
[-] miniterm-3.py
[edit]
[-] sha1hmac
[edit]
[-] dot2gxl
[edit]
[-] sha256hmac
[edit]
[-] ea-php83-pear
[edit]
[-] gsf-office-thumbnailer
[edit]
[-] grub2-mkstandalone
[edit]
[-] systemd-cryptenroll
[edit]
[-] gpgparsemail
[edit]
[-] chmem
[edit]
[-] lsscsi
[edit]
[-] nf-ct-add
[edit]
[-] cpansign
[edit]
[-] grub2-mkrescue
[edit]
[-] ldd
[edit]
[-] socat
[edit]
[-] xmllint
[edit]
[-] sg_reset_wp
[edit]
[-] simc_lsmplugin
[edit]
[-] ndptool
[edit]
[-] true
[edit]
[-] autoreconf
[edit]
[-] bash
[edit]
[-] tzselect
[edit]
[-] systemd-delta
[edit]
[-] gpgv
[edit]
[-] utmpdump
[edit]
[-] unlink
[edit]
[-] realpath
[edit]
[-] rpmkeys
[edit]
[-] kbdrate
[edit]
[-] gcov-dump
[edit]
[-] journalctl
[edit]
[-] watchgnupg
[edit]
[-] sg_opcodes
[edit]
[-] bond2team
[edit]
[-] sha256sum
[edit]
[-] preunzip
[edit]
[-] run-with-aspell
[edit]
[-] sha384sum
[edit]
[-] users
[edit]
[-] gst-inspect-1.0
[edit]
[-] pygettext.py
[edit]
[-] unshare
[edit]
[-] secon
[edit]
[-] gettextize
[edit]
[-] tail
[edit]
[-] xsltproc
[edit]
[-] x86_energy_perf_policy
[edit]
[-] ansible-galaxy
[edit]
[-] semodule_expand
[edit]
[-] ps2ps2
[edit]
[-] scsi_logging_level
[edit]
[-] appstream-compose
[edit]
[-] xdg-desktop-icon
[edit]
[-] tr
[edit]
[-] grub2-editenv
[edit]
[-] scsi-rescan
[edit]
[-] pdf2dsc
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] linux64
[edit]
[-] chrt
[edit]
[-] patchwork
[edit]
[-] named-rrchecker
[edit]
[-] numfmt
[edit]
[-] sg_decode_sense
[edit]
[-] setfattr
[edit]
[-] dpkg-split
[edit]
[-] nproc
[edit]
[-] strace-log-merge
[edit]
[-] htdigest
[edit]
[-] ptardiff
[edit]
[-] fg
[edit]
[-] setpriv
[edit]
[-] teamd
[edit]
[-] tcptraceroute
[edit]
[-] grub2-mknetdir
[edit]
[-] firewall-cmd
[edit]
[-] ausyscall
[edit]
[-] semodule_link
[edit]
[-] c89
[edit]
[-] gv2gml
[edit]
[-] setmetamode
[edit]
[-] sg_reassign
[edit]
[-] ac
[edit]
[-] gpg-card
[edit]
[-] sg_format
[edit]
[-] type
[edit]
[-] pipewire
[edit]
[-] aulastlog
[edit]
[-] setfacl
[edit]
[-] plesk_configure
[edit]
[-] grub2-mkpasswd-pbkdf2
[edit]
[-] ea-wappspector
[edit]
[-] funzip
[edit]
[-] grub2-mkimage
[edit]
[-] deallocvt
[edit]
[-] iio_generic_buffer
[edit]
[-] lwp-download
[edit]
[-] cpapi1
[edit]
[-] link
[edit]
[-] localectl
[edit]
[-] pidwait
[edit]
[-] doveadm
[edit]
[-] peekfd
[edit]
[-] systemd-inhibit
[edit]
[-] look
[edit]
[-] dircolors
[edit]
[-] php74-phar
[edit]
[-] dnsdomainname
[edit]
[-] gzexe
[edit]
[-] sg_read_attr
[edit]
[-] sg_write_verify
[edit]
[-] ld.so
[edit]
[-] msgattrib
[edit]
[-] dig
[edit]
[-] pipewire-aes67
[edit]
[-] pwmake
[edit]
[-] systemd-id128
[edit]
[-] blkiomon
[edit]
[-] modulemd-validator
[edit]
[-] sxpm
[edit]
[-] nl-addr-delete
[edit]
[-] nl-link-ifindex2name
[edit]
[-] size
[edit]
[-] kmod
[edit]
[-] atrm
[edit]
[-] pango-segmentation
[edit]
[-] bsqlodbc
[edit]
[-] gawk
[edit]
[-] lchsh
[edit]
[-] linux32
[edit]
[-] pip3
[edit]
[-] bunzip2
[edit]
[-] ea-php81-pecl
[edit]
[-] systemd-ask-password
[edit]
[-] xslt-config
[edit]
[-] nl-link-enslave
[edit]
[-] cvtsudoers
[edit]
[-] zipnote
[edit]
[-] col
[edit]
[-] vdostats
[edit]
[-] h2xs
[edit]
[-] sg_bg_ctl
[edit]
[-] graphml2gv
[edit]
[-] ea-php81-pear
[edit]
[-] fprintd-verify
[edit]
[-] chcat
[edit]
[-] nmcli
[edit]
[-] autoheader
[edit]
[-] renew-dummy-cert
[edit]
[-] protoc-gen-c
[edit]
[-] autoconf
[edit]
[-] mysqlpump
[edit]
[-] ansible-doc
[edit]
[-] chfn
[edit]
[-] fc-validate
[edit]
[-] miniterm.py
[edit]
[-] gr2fonttest
[edit]
[-] reposync
[edit]
[-] aclocal
[edit]
[-] envml
[edit]
[-] gsettings
[edit]
[-] lwp-request
[edit]
[-] sadf
[edit]
[-] sg_compare_and_write
[edit]
[-] nano
[edit]
[-] pftp
[edit]
[-] systemd-stdio-bridge
[edit]
[-] kdumpctl
[edit]
[-] objdump
[edit]
[-] vdodmeventd
[edit]
[-] wait
[edit]
[-] kill
[edit]
[-] fc-list
[edit]
[-] rpmquery
[edit]
[-] fisql
[edit]
[-] ima-add-sigs
[edit]
[-] sg_wr_mode
[edit]
[-] json_verify
[edit]
[-] rcs
[edit]
[-] ca-legacy
[edit]
[-] kernel-install
[edit]
[-] checkmodule
[edit]
[-] view
[edit]
[-] ls
[edit]
[-] dltest
[edit]
[-] quota
[edit]
[-] pphs
[edit]
[-] gobject-query
[edit]
[-] btt
[edit]
[-] cluster
[edit]
[-] php74-pear
[edit]
[-] sg_ses_microcode
[edit]
[-] c99
[edit]
[-] animate
[edit]
[-] pkttyagent
[edit]
[-] lneato
[edit]
[-] hash
[edit]
[-] perlml
[edit]
[-] freebcp
[edit]
[-] wmf2x
[edit]
[-] pod2usage
[edit]
[-] protoc
[edit]
[-] sg_sanitize
[edit]
[-] ea-php80
[edit]
[-] diffimg
[edit]
[-] idiag-socket-details
[edit]
[-] vi
[edit]
[-] scsi_temperature
[edit]
[-] nf-monitor
[edit]
[-] tee
[edit]
[-] msgunfmt
[edit]
[-] bsqldb
[edit]
[-] datacopy
[edit]
[-] openvt
[edit]
[-] sg_persist
[edit]
[-] xzgrep
[edit]
[-] mdb_dump
[edit]
[-] env
[edit]
[-] sg_rtpg
[edit]
[-] perlthanks
[edit]
[-] gvcolor
[edit]
[-] manpath
[edit]
[-] lexgrog
[edit]
[-] imunify-fgw-dump
[edit]
[-] expr
[edit]
[-] truncate
[edit]
[-] edgepaint
[edit]
[-] nl-addr-add
[edit]
[-] json_reformat
[edit]
[-] nmtui-edit
[edit]
[-] msgconv
[edit]
[-] hb-view
[edit]
[-] grub2-render-label
[edit]
[-] write
[edit]
[-] scsi_ready
[edit]
[-] xargs
[edit]
[-] loginctl
[edit]
[-] uuidgen
[edit]
[-] neato
[edit]
[-] mailx.s-nail
[edit]
[-] dumpkeys
[edit]
[-] gmake
[edit]
[-] cloud-init-per
[edit]
[-] gvmap
[edit]
[-] umount
[edit]
[-] md5sum
[edit]
[-] xzegrep
[edit]
[-] df
[edit]
[-] rsync-ssl
[edit]
[-] genl-ctrl-list
[edit]
[-] Mail
[edit]
[-] bashbug
[edit]
[-] auvirt
[edit]
[-] myisampack
[edit]
[-] sim_lsmplugin
[edit]
[-] rcsclean
[edit]
[-] ssh-keygen
[edit]
[-] sginfo
[edit]
[-] jsonpointer
[edit]
[-] fprintd-delete
[edit]
[-] pw-jack
[edit]
[-] nl-pktloc-lookup
[edit]
[-] spell
[edit]
[-] xzcmp
[edit]
[-] fmt
[edit]
[-] osinfo-db-validate
[edit]
[-] repomanage
[edit]
[-] lsusb
[edit]
[-] git-receive-pack
[edit]
[-] hostname
[edit]
[-] qemu-ga
[edit]
[-] elinks
[edit]
[-] gml2gv
[edit]
[-] gpg-agent
[edit]
[-] isql
[edit]
[-] strip
[edit]
[-] cd
[edit]
[-] systemd-umount
[edit]
[-] systemd-path
[edit]
[-] cxpm
[edit]
[-] pcre2-config
[edit]
[-] json_xs
[edit]
[-] file
[edit]
[-] bzip2
[edit]
[-] update-crypto-policies
[edit]
[-] nmtui-hostname
[edit]
[-] gettext.sh
[edit]
[-] unicode_stop
[edit]
[-] xzdiff
[edit]
[-] zlib_decompress
[edit]
[-] znew
[edit]
[-] gst-launch-1.0
[edit]
[-] fdp
[edit]
[-] uuidparse
[edit]
[-] slabtop
[edit]
[-] sg_dd
[edit]
[-] sedismod
[edit]
[-] sqlite3
[edit]
[-] free
[edit]
[-] php74-cgi
[edit]
[-] gvpack
[edit]
[-] wpexec
[edit]
[-] ln
[edit]
[-] vlock
[edit]
[-] vimdot
[edit]
[-] lsattr
[edit]
[-] memcached
[edit]
[-] cmp
[edit]
[-] msgfmt
[edit]
[-] addr2line
[edit]
[-] prezip-bin
[edit]
[-] rpmverify
[edit]
[-] centrino-decode
[edit]
[-] stty
[edit]
[-] chsh
[edit]
[-] gpio-hammer
[edit]
[-] lsipc
[edit]
[-] pre-grohtml
[edit]
[-] strace
[edit]
[-] gprof
[edit]
[-] ansible-pull
[edit]
[-] cat
[edit]
[-] nl-nh-list
[edit]
[-] gcc-ranlib
[edit]
[-] teamdctl
[edit]
[-] tmon
[edit]
[-] chattr
[edit]
[-] dbus-broker
[edit]
[-] sg_rbuf
[edit]
[-] ansible-connection
[edit]
[-] mail
[edit]
[-] flatpak
[edit]
[-] chardetect
[edit]
[-] gvpr
[edit]
[-] orc-bugreport
[edit]
[-] wmf2gd
[edit]
[-] od
[edit]
[-] mailstat
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] nl-neigh-delete
[edit]
[-] sg_vpd
[edit]
[-] timeout
[edit]
[-] xzdec
[edit]
[-] lz4_decompress
[edit]
[-] gxl2dot
[edit]
[-] package-cleanup
[edit]
[-] sealert
[edit]
[-] nl-link-release
[edit]
[-] grub2-fstest
[edit]
[-] debuginfo-install
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] lwp-mirror
[edit]
[-] grub2-mkfont
[edit]
[-] ghostscript
[edit]
[-] procan
[edit]
[-] tapestat
[edit]
[-] msgfmt3.9.py
[edit]
[-] rpmdb
[edit]
[-] btattach
[edit]
[-] ident
[edit]
[-] lslogins
[edit]
[-] libnetcfg
[edit]
[-] ansible-playbook
[edit]
[-] grub2-mkrelpath
[edit]
[-] grotty
[edit]
[-] iio_event_monitor
[edit]
[-] xdg-mime
[edit]
[-] fribidi
[edit]
[-] dotty
[edit]
[-] wireplumber
[edit]
[-] dwz
[edit]
[-] zdiff
[edit]
[-] pod2man
[edit]
[-] merge
[edit]
[-] sg_seek
[edit]
[-] systemd-repart
[edit]
[-] gpasswd
[edit]
[-] glib-genmarshal
[edit]
[-] blkparse
[edit]
[-] psfaddtable
[edit]
[-] echo
[edit]
[-] ar
[edit]
[-] colcrt
[edit]
[-] certutil
[edit]
[-] nice
[edit]
[-] expand
[edit]
[-] nroff
[edit]
[-] nl-link-set
[edit]
[-] touch
[edit]
[-] gsnd
[edit]
[-] cronnext
[edit]
[-] mdb_copy
[edit]
[-] pyinotify
[edit]
[-] fc-cat
[edit]
[-] ea-php80-pear
[edit]
[-] vimtutor
[edit]
[-] uname
[edit]
[-] quotasync
[edit]
[-] lsmem
[edit]
[-] dirmngr
[edit]
[-] rcsfreeze
[edit]
[-] updatedb
[edit]
[-] needs-restarting
[edit]
[-] audit2allow
[edit]
[-] xxd
[edit]
[-] systemd-sysusers
[edit]
[-] htdbm
[edit]
[-] ps2pdfwr
[edit]
[-] pkla-admin-identities
[edit]
[-] paste
[edit]
[-] jsonpatch
[edit]
[-] comm
[edit]
[-] scsi_stop
[edit]
[-] groups
[edit]
[-] config_data
[edit]
[-] tracer
[edit]
[-] scalar
[edit]
[-] avinfo
[edit]
[-] setkeycodes
[edit]
[-] ccomps
[edit]
[-] lesspipe.sh
[edit]
[-] bwrap
[edit]
[-] gettext
[edit]
[-] pkla-check-authorization
[edit]
[-] sg_write_long
[edit]
[-] gsoelim
[edit]
[-] crb
[edit]
[-] nl-list-caches
[edit]
[-] traceroute6
[edit]
[-] elfedit
[edit]
[-] sha224sum
[edit]
[-] php
[edit]
[-] fprintd-list
[edit]
[-] flex++
[edit]
[-] glib-compile-schemas
[edit]
[-] hunspell
[edit]
[-] infocmp
[edit]
[-] busctl
[edit]
[-] lsgpio
[edit]
[-] psfxtable
[edit]
[-] tmpwatch
[edit]
[-] lua
[edit]
[-] cpapi3
[edit]
[-] pod2text
[edit]
[-] gpgtar
[edit]
[-] identify
[edit]
[-] post-grohtml
[edit]
[-] scl_source
[edit]
[-] lsinitrd
[edit]
[-] getopt
[edit]
[-] ld
[edit]
[-] desktop-file-edit
[edit]
[-] sprof
[edit]
[-] scp
[edit]
[-] zipsplit
[edit]
[-] pcre-config
[edit]
[-] bootctl
[edit]
[-] jsondiff-3.9
[edit]
[-] bzless
[edit]
[-] mailx
[edit]
[-] isosize
[edit]
[-] pathfix.py
[edit]
[-] yumdownloader
[edit]
[-] nl-neightbl-list
[edit]
[-] test
[edit]
[-] gunzip
[edit]
[-] gpg-connect-agent
[edit]
[-] gtar
[edit]
[-] eps2eps
[edit]
[-] chronyc
[edit]
[-] zfgrep
[edit]
[-] sasl2-sample-server
[edit]
[-] sg_write_same
[edit]
[-] prlimit
[edit]
[-] chacl
[edit]
[-] sg_turs
[edit]
[-] nop
[edit]
[-] newuidmap
[edit]
[-] team2bond
[edit]
[-] GET
[edit]
[-] unalias
[edit]
[-] fips-mode-setup
[edit]
[-] pydoc3.9
[edit]
[-] blkrawverify
[edit]
[-] wall
[edit]
[-] ps2pdf
[edit]
[-] uptime
[edit]
[-] neqn
[edit]
[-] odbcinst
[edit]
[-] montage
[edit]
[-] intel-speed-select
[edit]
[-] lastlog
[edit]
[-] nl-neigh-add
[edit]
[-] irqtop
[edit]
[-] b2sum
[edit]
[-] time
[edit]
[-] rview
[edit]
[-] c++filt
[edit]
[-] repoquery
[edit]
[-] dpkg-divert
[edit]
[-] icuinfo
[edit]
[-] w
[edit]
[-] automake
[edit]
[-] pstree
[edit]
[-] idn
[edit]
[-] rcsmerge
[edit]
[-] fincore
[edit]
[-] sshpass
[edit]
[-] psfgettable
[edit]
[-] lefty
[edit]
[-] rcsdiff
[edit]
[-] rpcinfo
[edit]
[-] ima-setup
[edit]
[-] lsphp
[edit]
[-] POST
[edit]
[-] gpg-wks-client
[edit]
[-] dd
[edit]
[-] convert
[edit]
[-] fc-cache
[edit]
[-] lsiio
[edit]
[-] troff
[edit]
[-] slabinfo
[edit]
[-] dnf
[edit]
[-] nl-link-name2ifindex
[edit]
[-] perl5.32.1
[edit]
[-] dbus-update-activation-environment
[edit]
[-] cut
[edit]
[-] scriptlive
[edit]
[-] nl-qdisc-add
[edit]
[-] imunify360-command-wrapper
[edit]
[-] miniterm-3.9.py
[edit]
[-] modutil
[edit]
[-] xzmore
[edit]
[-] strings
[edit]
[-] mpris-proxy
[edit]
[-] snice
[edit]
[-] rpcbind
[edit]
[-] apropos.man-db
[edit]
[-] domainname
[edit]
[-] ptx
[edit]
[-] gdbus-codegen
[edit]
[-] nl-cls-delete
[edit]
[-] logger
[edit]
[-] gcc-nm
[edit]
[-] [
[edit]
[-] sha512hmac
[edit]
[-] getent
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] libpng-config
[edit]
[-] whereis
[edit]
[-] jsonpatch-3.9
[edit]
[-] iostat
[edit]
[-] runcon
[edit]
[-] ftp
[edit]
[-] gst-stats-1.0
[edit]
[-] iconv
[edit]
[-] bzip2recover
[edit]
[-] osinfo-db-export
[edit]
[-] prtstat
[edit]
[-] scriptreplay
[edit]
[-] bzfgrep
[edit]
[-] sg_map
[edit]
[-] jsondiff-3
[edit]
[-] sg_sat_phy_event
[edit]
[-] rsync
[edit]
[-] newgrp
[edit]
[-] ea-php81
[edit]
[-] delv
[edit]
[-] sss_ssh_knownhostsproxy
[edit]
[-] xz
[edit]
[-] dbus-send
[edit]
[-] apxs
[edit]
[-] localedef
[edit]
[-] systemd-cat
[edit]
[-] grub2-script-check
[edit]
[-] tabs
[edit]
[-] btrecord
[edit]
[-] ps2pdf13
[edit]
[-] gneqn
[edit]
[-] ssltap
[edit]
[-] eqn
[edit]
[-] lsirq
[edit]
[-] sgm_dd
[edit]
[-] sum
[edit]
[-] patch
[edit]
[-] memcached-tool
[edit]
[-] cpio
[edit]
[-] soelim.groff
[edit]
[-] bzdiff
[edit]
[-] pinky
[edit]
[-] gcc
[edit]
[-] wdctl
[edit]
[-] audit2why
[edit]
[-] arch
[edit]
[-] nm-online
[edit]
[-] traceroute
[edit]
[-] scsi_start
[edit]
[-] zone2json
[edit]
[-] pkcheck
[edit]
[-] tload
[edit]
[-] jq
[edit]
[-] mac2unix
[edit]
[-] sieve-test
[edit]
[-] m4
[edit]
[-] freetype-config
[edit]
[-] pod2html
[edit]
[-] myisamchk
[edit]
[-] as
[edit]
[-] man-recode
[edit]
[-] switch_mod_lsapi
[edit]
[-] stat
[edit]
[-] vim
[edit]
[-] ps2ps
[edit]
[-] lto-dump
[edit]
[-] xzcat
[edit]
[-] gzip
[edit]
[-] clockdiff
[edit]
[-] run-parts
[edit]
[-] cl-linksafe-apply-group
[edit]
[-] png-fix-itxt
[edit]
[-] locate
[edit]
[-] fgrep
[edit]
[-] gtbl
[edit]
[-] nf-exp-delete
[edit]
[-] gio-querymodules-64
[edit]
[-] awk
[edit]
[-] ncurses6-config
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] semodule_package
[edit]
[-] nl-classid-lookup
[edit]
[-] zipgrep
[edit]
[-] head
[edit]
[-] gtroff
[edit]
[-] libtool
[edit]
[-] pkaction
[edit]
[-] sm3hmac
[edit]
[-] sha1sum
[edit]
[-] msgfmt.py
[edit]
[-] nss-policy-check
[edit]
[-] attr
[edit]
[-] sdiff
[edit]
[-] brotli
[edit]
[-] sw-engine
[edit]
[-] mysql_config_editor
[edit]
[-] bno_plot.py
[edit]
[-] fc-conflist
[edit]
[-] imunify-antivirus
[edit]
[-] fips-finish-install
[edit]
[-] tred
[edit]
[-] python-html2text
[edit]
[-] repo-graph
[edit]
[-] sccmap
[edit]
[-] x86_64-redhat-linux-gnu-pkg-config
[edit]
[-] firewall-offline-cmd
[edit]
[-] yum-debug-dump
[edit]
[-] geqn
[edit]
[-] dc
[edit]
[-] gtester-report
[edit]
[-] ncursesw6-config
[edit]
[-] pdf2ps
[edit]
[-] gvgen
[edit]
[-] python-config
[edit]
[-] dirmngr-client
[edit]
[-] update-gtk-immodules
[edit]
[-] sg_scan
[edit]
[-] dnf-3
[edit]
[-] mknod
[edit]
[-] pip3.9
[edit]
[-] mandb
[edit]
[-] lex
[edit]
[-] atq
[edit]
[-] nisdomainname
[edit]
[-] sg_sat_identify
[edit]
[-] nf-exp-add
[edit]
[-] pldd
[edit]
[-] bzmore
[edit]
[-] pfbtopfa
[edit]
[-] sscg
[edit]
[-] less
[edit]
[-] nsupdate
[edit]
[-] btreplay
[edit]
[-] twopi
[edit]
[-] lessecho
[edit]
[-] gs
[edit]
[-] base32
[edit]
[-] sg_rmsn
[edit]
[-] rlog
[edit]
[-] tracepath
[edit]
[-] msgfilter
[edit]
[-] nm
[edit]
[-] jobs
[edit]
[-] my_print_defaults
[edit]
[-] event_rpcgen.py
[edit]
[-] php74
[edit]
[-] gst-typefind-1.0
[edit]
[-] systemd-creds
[edit]
[-] bluetoothctl
[edit]
[-] pr
[edit]
[-] gxl2gv
[edit]
[-] gpg-error-config
[edit]
[-] dtrace
[edit]
[-] word-list-compress
[edit]
[-] jsonpointer-3
[edit]
[-] xdg-icon-resource
[edit]
[-] pipewire-avb
[edit]
[-] import
[edit]
[-] yat2m
[edit]
[-] sg_emc_trespass
[edit]
[-] zegrep
[edit]
[-] HEAD
[edit]
[-] lastcomm
[edit]
[-] systemd-dissect
[edit]
[-] yum-builddep
[edit]
[-] zone2sql
[edit]
[-] lslocks
[edit]
[-] lockfile
[edit]
[-] ul
[edit]
[-] diff3
[edit]
[-] lwp-dump
[edit]
[-] sedispol
[edit]
[-] tree
[edit]
[-] pipewire-vulkan
[edit]
[-] modulecmd
[edit]
[-] mysqladmin
[edit]
[-] update-desktop-database
[edit]
[-] ifnames
[edit]
[-] fc
[edit]
[-] rename
[edit]
[-] unzip
[edit]
[-] msgen
[edit]
[-] sg_get_config
[edit]
[-] sg_modes
[edit]
[-] libpng16-config
[edit]
[-] ps2ascii
[edit]
[-] pl2pm
[edit]
[-] kbd_mode
[edit]
[-] join
[edit]
[-] repodiff
[edit]
[-] unexpand
[edit]
[-] mysqlslap
[edit]
[-] json_pp
[edit]
[-] exiv2
[edit]
[-] reset
[edit]
[-] mdb_stat
[edit]
[-] i386
[edit]
[-] tty
[edit]
[-] chcon
[edit]
[-] tset
[edit]
[-] dnf4
[edit]
[-] apropos
[edit]
[-] defncopy
[edit]
[-] libwmf-fontmap
[edit]
[-] hexdump
[edit]
[-] xmlwf
[edit]
[-] mkfontscale
[edit]
[-] paperconf
[edit]
[-] gsbj
[edit]
[-] gdbus
[edit]
[-] psfstriptable
[edit]
[-] python3
[edit]
[-] wget
[edit]
[-] nf-ct-list
[edit]
[-] ps2pdf12
[edit]
[-] ipcs
[edit]
[-] sg_timestamp
[edit]
[-] pango-view
[edit]
[-] alias
[edit]
[-] printafm
[edit]
[-] systemd-detect-virt
[edit]
[-] osinfo-install-script
[edit]
[-] mogrify
[edit]
[-] du
[edit]
[-] gcov-tool
[edit]
[-] pygettext3.py
[edit]
[-] catchsegv
[edit]
[-] infotocap
[edit]
[-] pslog
[edit]
[-] arpaname
[edit]
[-] umask
[edit]
[-] nl-link-stats
[edit]
[-] hb-subset
[edit]
[-] gnroff
[edit]
[-] newgidmap
[edit]
[-] co
[edit]
[-] systemd-cgls
[edit]
[-] date
[edit]
[-] rpm2cpio
[edit]
[-] g13
[edit]
[-] pgrep
[edit]
[-] logresolve
[edit]
[-] aspell
[edit]
[-] wmf2fig
[edit]
[-] scsi_mandat
[edit]
[-] gdbm_dump
[edit]
[-] top
[edit]
[-] lsmd
[edit]
[-] mesg
[edit]
[-] aserver
[edit]
[-] trust
[edit]
[-] pf2afm
[edit]
[-] nl-list-sockets
[edit]
[-] ipcmk
[edit]
[-] make-dummy-cert
[edit]
[-] cyrusbdb2current
[edit]
[-] renice
[edit]
[-] mysql_config-64
[edit]
[-] getfacl
[edit]
[-] pkgconf
[edit]
[-] grub2-mklayout
[edit]
[-] scsi_readcap
[edit]
[-] dir
[edit]
[-] scl
[edit]
[-] pkmon
[edit]
[-] sestatus
[edit]
[-] uname26
[edit]
[-] at
[edit]
[-] sg_logs
[edit]
[-] findmnt
[edit]
[-] gtk-update-icon-cache
[edit]
[-] chown
[edit]
[-] ea-php82-pear
[edit]
[-] crc32
[edit]
[-] eject
[edit]
[-] sg_sat_read_gplog
[edit]
[-] systemd-escape
[edit]
[-] zipinfo
[edit]
[-] red
[edit]
[-] zdump
[edit]
[-] pipewire-pulse
[edit]
[-] whatis.man-db
[edit]
[-] perlivp
[edit]
[-] nl-cls-list
[edit]
[-] batch
[edit]
[-] ansible-vault
[edit]
[-] aclocal-1.16
[edit]
[-] stdbuf
[edit]
[-] ld.gold
[edit]
[-] sort
[edit]
[-] dbiprof
[edit]
[-] gcov
[edit]
[-] setleds
[edit]
[-] setup-nsssysinit
[edit]
[-] desktop-file-validate
[edit]
[-] ea-php83
[edit]
[-] pango-list
[edit]
[-] mount
[edit]
[-] fprintd-enroll
[edit]
[-] usbhid-dump
[edit]
[-] nmtui
[edit]
[-] timedatectl
[edit]
[-] piconv
[edit]
[-] msgfmt3.py
[edit]
[-] nl-class-list
[edit]
[-] shasum
[edit]
[-] cifsiostat
[edit]
[-] rnano
[edit]
[-] imunify360-agent
[edit]
[-] ea-php80-pecl
[edit]
[-] nc
[edit]
[-] pkexec
[edit]
[-] unflatten
[edit]
[-] sudoedit
[edit]
[-] mm2gv
[edit]
[-] xml2-config
[edit]
[-] teamnl
[edit]
[-] mv
[edit]
[-] sg_rep_zones
[edit]
[-] pkg-config
[edit]
[-] systemd-hwdb
[edit]
[-] read
[edit]
[-] whatis
[edit]
[-] links
[edit]
[-] osage
[edit]
[-] grub2-file
[edit]
[-] sha512sum
[edit]
[-] tdspool
[edit]
[-] systemd-run
[edit]
[-] pdns_control
[edit]
[-] shuf
[edit]
[-] mysqldumpslow
[edit]
[-] vdir
[edit]
[-] readelf
[edit]
[-] xdg-settings
[edit]
[-] telnet
[edit]
[-] git-shell
[edit]
[-] msginit
[edit]
[-] unxz
[edit]
[-] bg
[edit]
[-] nl-route-list
[edit]
[-] fusermount
[edit]
[-] dpkg-query
[edit]
[-] msguniq
[edit]
[-] turbostat
[edit]
[-] sg_zone
[edit]
[-] sievec
[edit]
[-] grops
[edit]
[-] gcc-ar
[edit]
[-] acyclic
[edit]
[-] gvmap.sh
[edit]
[-] who
[edit]
[-] sg_read_buffer
[edit]
[-] appstream-util
[edit]
[-] loadkeys
[edit]
[-] nl-qdisc-list
[edit]
[-] msgmerge
[edit]
[-] msgcmp
[edit]
[-] ipcrm
[edit]
[-] tac
[edit]
[-] sar
[edit]
[-] git-upload-archive
[edit]
[-] gio
[edit]
[-] prune
[edit]
[-] sleep
[edit]
[-] whiptail
[edit]
[-] im360-k8s-syncer
[edit]
[-] uapi
[edit]
[-] mkfontdir
[edit]
[-] bcomps
[edit]
[-] mysql_upgrade
[edit]
[-] ex
[edit]
[-] lesskey
[edit]
[-] systemd-analyze
[edit]
[-] dnstap-read
[edit]
[-] python
[edit]
[-] resizecons
[edit]
[-] sieve-filter
[edit]
[-] lsusb.py
[edit]
[-] ps2epsi
[edit]
[-] repoclosure
[edit]
[-] seq
[edit]
[-] base64
[edit]
[-] mysql_config
[edit]
[-] make
[edit]
[-] glib-gettextize
[edit]
[-] script
[edit]
[-] cpapi2
[edit]
[-] ssh-copy-id
[edit]
[-] gresource
[edit]
[-] gpg2
[edit]
[-] fallocate
[edit]
[-] semodule_unpackage
[edit]
[-] sg_raw
[edit]
[-] sieve-dump
[edit]
[-] pstree.x11
[edit]
[-] systemd-cgtop
[edit]
[-] pdnsutil
[edit]
[-] pathfix3.9.py
[edit]
[-] last
[edit]
[-] unicode_start
[edit]
[-] gpg-error
[edit]
[-] sha224hmac
[edit]
[-] gdbm_load
[edit]
[-] nmtui-connect
[edit]
[-] vmstat
[edit]
[-] symlinks
[edit]
[-] ansible-inventory
[edit]
[-] cmsutil
[edit]
[-] loadunimap
[edit]
[-] sg_rep_pip
[edit]
[-] gdk-pixbuf-thumbnailer
[edit]
[-] unpigz
[edit]
[-] jsonpatch-3
[edit]
[-] nl-tctree-list
[edit]
[-] printenv
[edit]
[-] skill
[edit]
[-] hb-shape
[edit]
[-] perldoc
[edit]
[-] zforce
[edit]
[-] dbus-monitor
[edit]
[-] install
[edit]
[-] precat
[edit]
[-] systemd-mount
[edit]
[-] which
[edit]
[-] sg_readcap
[edit]
[-] tsort
[edit]
[-] sg_luns
[edit]
[-] linux-boot-prober
[edit]
[-] glib-mkenums
[edit]
[-] zipdetails
[edit]
[-] pk12util
[edit]
[-] getconf
[edit]
[-] gtk-query-immodules-2.0-64
[edit]
[-] sg_prevent
[edit]
[-] envsubst
[edit]
[-] sg_stpg
[edit]
[-] btmon
[edit]
[-] desktop-file-install
[edit]
[-] sg_requests
[edit]
[-] curl
[edit]
[-] sha384hmac
[edit]
[-] gtester
[edit]
[-] bzgrep
[edit]
[-] gslj
[edit]
[-] iusql
[edit]
[-] ping
[edit]
[-] nl-cls-add
[edit]
[-] rmdir
[edit]
[-] mkdir
[edit]
[-] systemd-firstboot
[edit]
[-] pkill
[edit]
[-] nl-link-list
[edit]
[-] mysql_migrate_keyring
[edit]
[-] zcmp
[edit]
[-] mcookie
[edit]
[-] find-repos-of-install
[edit]
[-] fuse2fs
[edit]
[-] split
[edit]
[-] update-mime-database
[edit]
[-] pic
[edit]
[-] sg_write_buffer
[edit]
[-] sgp_dd
[edit]
[-] fold
[edit]
[-] crontab
[edit]
[-] showconsolefont
[edit]
[-] grub2-mount
[edit]
[-] chvt
[edit]
[-] rsvg-convert
[edit]
[-] ngettext
[edit]
[-] find
[edit]
[-] showkey
[edit]
[-] libtoolize
[edit]
[-] yum
[edit]
[-] tic
[edit]
[-] distro
[edit]
[-] lastb
[edit]
[-] osinfo-query
[edit]
[-] yes
[edit]
[-] hardlink
[edit]
[-] fgconsole
[edit]
[-] mysql
[edit]
[-] dwp
[edit]
[-] authselect
[edit]
[-] dconf
[edit]
[-] chage
[edit]
[-] usleep
[edit]
[-] whoami
[edit]
[-] egrep
[edit]
[-] splain
[edit]
[-] 2to3
[edit]
[-] rpm2archive
[edit]
[-] sg_map26
[edit]
[-] hostid
[edit]
[-] unzipsfx
[edit]
[-] exempi
[edit]
[-] rkhunter
[edit]
[-] cloud-id
[edit]
[-] scsi_satl
[edit]
[-] pwd
[edit]
[-] gslp
[edit]
[-] setvtrgb
[edit]
[-] imunify-agent-proxy
[edit]
[-] pidstat
[edit]
[-] mdb_load
[edit]
[-] lsblk
[edit]
[-] fc-cache-64
[edit]
[-] acpi_listen
[edit]
[-] pip-3
[edit]
[-] wc
[edit]
[-] xdg-open
[edit]
[-] jsonschema
[edit]
[-] cal
[edit]
[-] sg_read
[edit]
[-] powernow-k8-decode
[edit]
[-] sftp
[edit]
[-] pinfo
[edit]
[-] lsphp74
[edit]
[-] nf-exp-list
[edit]
[-] catman
[edit]
[-] sg_reset
[edit]
[-] namei
[edit]
[-] tsql
[edit]
[-] basenc
[edit]
[-] gencat
[edit]
[-] ncat
[edit]
[-] id
[edit]
[-] setsid
[edit]
[-] gsdj
[edit]
[-] xsubpp
[edit]
[-] sfdp
[edit]
[-] factor
[edit]
[-] blktrace
[edit]
[-] h2ph
[edit]
[-] nl-rule-list
[edit]
[-] sg_inq
[edit]
[-] info
[edit]
[-] checkpolicy
[edit]
[-] nohup
[edit]
[-] p11-kit
[edit]
[-] objcopy
[edit]
[-] tclsh
[edit]
[-] mysqld_pre_systemd
[edit]
[-] imunify-service
[edit]
[-] htpasswd
[edit]
[-] rvim
[edit]
[-] conjure
[edit]
[-] luac
[edit]
[-] cpupower
[edit]
[-] x86_64-redhat-linux-gcc-11
[edit]
[-] ps2pdf14
[edit]
[-] ptar
[edit]
[-] hesinfo
[edit]
[-] nl-addr-list
[edit]
[-] flatpak-bisect
[edit]
[-] taskset
[edit]
[-] setup-nsssysinit.sh
[edit]
[-] automake-1.16
[edit]
[-] mysqlshow
[edit]
[-] ypdomainname
[edit]
[-] nf-ct-events
[edit]
[-] getkeycodes
[edit]
[-] debuginfod-find
[edit]
[-] zgrep
[edit]
[-] dpkg-realpath
[edit]
[-] pwdx
[edit]
[-] cpan-mirrors
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] autoupdate
[edit]
[-] ispell
[edit]
[-] vimdiff
[edit]
[-] nl-qdisc-delete
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] sync
[edit]
[-] bzcmp
[edit]
[-] sg_test_rwbuf
[edit]
[-] nl-route-get
[edit]
[-] vdoformat
[edit]
[-] fc-scan
[edit]
[-] git
[edit]
[-] systemd-notify
[edit]
[-] cp
[edit]
[-] gpgconf
[edit]
[-] gtk-query-immodules-3.0-64
[edit]
[-] msgcomm
[edit]
[-] bashbug-64
[edit]
[-] flock
[edit]
[-] nl-fib-lookup
[edit]
[-] flatpak-coredumpctl
[edit]
[-] notify-send
[edit]
[-] mmdblookup
[edit]
[-] sg_rdac
[edit]
[-] sg_ident
[edit]
[-] gpgsplit
[edit]
[-] tar
[edit]
[-] ssh
[edit]
[-] xzfgrep
[edit]
[-] coredumpctl
[edit]
[-] mpstat
[edit]
[-] nl-util-addr
[edit]
[-] gpio-event-mon
[edit]
[-] ed
[edit]
[-] host
[edit]
[-] signver
[edit]
[-] locale
[edit]
[-] html2text
[edit]
[-] crlutil
[edit]
[-] gsdj500
[edit]
[-] kvm_stat
[edit]
[-] sg_verify
[edit]
[-] circo
[edit]
[-] wmf2eps
[edit]
[-] login
[edit]
[-] sg_sat_set_features
[edit]
[-] openssl
[edit]
[-] dot
[edit]
[-] s-nail
[edit]
[-] sg_start
[edit]
[-] gpio-watch
[edit]
[-] grub2-kbdcomp
[edit]
[-] enc2xs
[edit]
[-] pflags
[edit]
[-] gtk-launch
[edit]
[-] dijkstra
[edit]
[-] nl-class-add
[edit]
[-] dpkg-trigger
[edit]
[-] ulockmgr_server
[edit]
[-] ibd2sdi
[edit]
[-] sg_unmap
[edit]
[-] logname
[edit]
[-] osinfo-db-path
[edit]
[-] python3.9
[edit]
[-] protoc-c
[edit]
[-] canberra-boot
[edit]
[-] sg_referrals
[edit]
[-] pydoc3
[edit]
[-] wpctl
[edit]
[-] jsonpointer-3.9
[edit]
[-] bison
[edit]
[-] killall
[edit]
[-] more
[edit]
[-] tracker3
[edit]
[-] clear
[edit]
[-] python3.9-x86_64-config
[edit]
[-] sudo
[edit]
[-] mysql_ssl_rsa_setup
[edit]
[-] netstat
[edit]
[-] msgcat
[edit]
[-] procmail
[edit]
[-] arping
[edit]
[-] dracut
[edit]
[-] soelim
[edit]
[-] getfattr
[edit]
[-] encguess
[edit]
[-] sed
[edit]
[-] pathchk
[edit]
[-] toe
[edit]
[-] nl-class-delete
[edit]
[-] cksum
[edit]
[-] cpan
[edit]
[-] nl-route-add
[edit]
[-] streamzip
[edit]
[-] prezip
[edit]
[-] zsoelim
[edit]
[-] pygettext3.9.py
[edit]
[-] page_owner_sort
[edit]