PATH:
usr
/
bin
#!/usr/bin/perl eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' if $running_under_some_shell; # perlivp v5.26.3 BEGIN { pop @INC if $INC[-1] eq '.' } sub usage { warn "@_\n" if @_; print << " EOUSAGE"; Usage: $0 [-p] [-v] | [-h] -p Print a preface before each test telling what it will test. -v Verbose mode in which extra information about test results is printed. Test failures always print out some extra information regardless of whether or not this switch is set. -h Prints this help message. EOUSAGE exit; } use vars qw(%opt); # allow testing with older versions (do not use our) @opt{ qw/? H h P p V v/ } = qw(0 0 0 0 0 0 0); while ($ARGV[0] =~ /^-/) { $ARGV[0] =~ s/^-//; for my $flag (split(//,$ARGV[0])) { usage() if '?' =~ /\Q$flag/; usage() if 'h' =~ /\Q$flag/; usage() if 'H' =~ /\Q$flag/; usage("unknown flag: '$flag'") unless 'HhPpVv' =~ /\Q$flag/; warn "$0: '$flag' flag already set\n" if $opt{$flag}++; } shift; } $opt{p}++ if $opt{P}; $opt{v}++ if $opt{V}; my $pass__total = 0; my $error_total = 0; my $tests_total = 0; my $perlpath = '/usr/bin/perl'; my $useithreads = 'define'; print "## Checking Perl binary via variable '\$perlpath' = $perlpath.\n" if $opt{'p'}; my $label = 'Executable perl binary'; if (-x $perlpath) { print "## Perl binary '$perlpath' appears executable.\n" if $opt{'v'}; print "ok 1 $label\n"; $pass__total++; } else { print "# Perl binary '$perlpath' does not appear executable.\n"; print "not ok 1 $label\n"; $error_total++; } $tests_total++; print "## Checking Perl version via variable '\$]'.\n" if $opt{'p'}; my $ivp_VERSION = "5.026003"; $label = 'Perl version correct'; if ($ivp_VERSION eq $]) { print "## Perl version '$]' appears installed as expected.\n" if $opt{'v'}; print "ok 2 $label\n"; $pass__total++; } else { print "# Perl version '$]' installed, expected $ivp_VERSION.\n"; print "not ok 2 $label\n"; $error_total++; } $tests_total++; # We have the right perl and version, so now reset @INC so we ignore # PERL5LIB and '.' { local $ENV{PERL5LIB}; my $perl_V = qx($perlpath -V); $perl_V =~ s{.*\@INC:\n}{}ms; @INC = grep { length && $_ ne '.' } split ' ', $perl_V; } print "## Checking roots of the Perl library directory tree via variable '\@INC'.\n" if $opt{'p'}; my $INC_total = 0; my $INC_there = 0; foreach (@INC) { next if $_ eq '.'; # skip -d test here if (-d $_) { print "## Perl \@INC directory '$_' exists.\n" if $opt{'v'}; $INC_there++; } else { print "# Perl \@INC directory '$_' does not appear to exist.\n"; } $INC_total++; } $label = '@INC directoreis exist'; if ($INC_total == $INC_there) { print "ok 3 $label\n"; $pass__total++; } else { print "not ok 3 $label\n"; $error_total++; } $tests_total++; print "## Checking installations of modules necessary for ivp.\n" if $opt{'p'}; my $needed_total = 0; my $needed_there = 0; foreach (qw(Config.pm ExtUtils/Installed.pm)) { $@ = undef; $needed_total++; eval "require \"$_\";"; if (!$@) { print "## Module '$_' appears to be installed.\n" if $opt{'v'}; $needed_there++; } else { print "# Needed module '$_' does not appear to be properly installed.\n"; } $@ = undef; } $label = 'Modules needed for rest of perlivp exist'; if ($needed_total == $needed_there) { print "ok 4 $label\n"; $pass__total++; } else { print "not ok 4 $label\n"; $error_total++; } $tests_total++; print "## Checking installations of extensions built with perl.\n" if $opt{'p'}; use Config; my $extensions_total = 0; my $extensions_there = 0; if (defined($Config{'extensions'})) { my @extensions = split(/\s+/,$Config{'extensions'}); foreach (@extensions) { next if ($_ eq ''); if ( $useithreads !~ /define/i ) { next if ($_ eq 'threads'); next if ($_ eq 'threads/shared'); } # that's a distribution name, not a module name next if $_ eq 'IO/Compress'; next if $_ eq 'Devel/DProf'; next if $_ eq 'libnet'; next if $_ eq 'Locale/Codes'; next if $_ eq 'podlators'; next if $_ eq 'perlfaq'; # test modules next if $_ eq 'XS/APItest'; next if $_ eq 'XS/Typemap'; # VMS$ perl -e "eval ""require \""Devel/DProf.pm\"";"" print $@" # \NT> perl -e "eval \"require './Devel/DProf.pm'\"; print $@" # DProf: run perl with -d to use DProf. # Compilation failed in require at (eval 1) line 1. eval " require \"$_.pm\"; "; if (!$@) { print "## Module '$_' appears to be installed.\n" if $opt{'v'}; $extensions_there++; } else { print "# Required module '$_' does not appear to be properly installed.\n"; $@ = undef; } $extensions_total++; } # A silly name for a module (that hopefully won't ever exist). # Note that this test serves more as a check of the validity of the # actual required module tests above. my $unnecessary = 'bLuRfle'; if (!grep(/$unnecessary/, @extensions)) { $@ = undef; eval " require \"$unnecessary.pm\"; "; if ($@) { print "## Unnecessary module '$unnecessary' does not appear to be installed.\n" if $opt{'v'}; } else { print "# Unnecessary module '$unnecessary' appears to be installed.\n"; $extensions_there++; } } $@ = undef; } $label = 'All (and only) expected extensions installed'; if ($extensions_total == $extensions_there) { print "ok 5 $label\n"; $pass__total++; } else { print "not ok 5 $label\n"; $error_total++; } $tests_total++; print "## Checking installations of later additional extensions.\n" if $opt{'p'}; use ExtUtils::Installed; my $installed_total = 0; my $installed_there = 0; my $version_check = 0; my $installed = ExtUtils::Installed -> new(); my @modules = $installed -> modules(); my @missing = (); my $version = undef; for (@modules) { $installed_total++; # Consider it there if it contains one or more files, # and has zero missing files, # and has a defined version $version = undef; $version = $installed -> version($_); if ($version) { print "## $_; $version\n" if $opt{'v'}; $version_check++; } else { print "# $_; NO VERSION\n" if $opt{'v'}; } $version = undef; @missing = (); @missing = $installed -> validate($_); # .bs files are optional @missing = grep { ! /\.bs$/ } @missing; # man files are often compressed @missing = grep { ! ( -s "$_.gz" || -s "$_.bz2" ) } @missing; if ($#missing >= 0) { print "# file",+($#missing == 0) ? '' : 's'," missing from installation:\n"; print '# ',join(' ',@missing),"\n"; } elsif ($#missing == -1) { $installed_there++; } @missing = (); } $label = 'Module files correctly installed'; if (($installed_total == $installed_there) && ($installed_total == $version_check)) { print "ok 6 $label\n"; $pass__total++; } else { print "not ok 6 $label\n"; $error_total++; } $tests_total++; # Final report (rather than feed ousrselves to Test::Harness::runtests() # we simply format some output on our own to keep things simple and # easier to "fix" - at least for now. if ($error_total == 0 && $tests_total) { print "All tests successful.\n"; } elsif ($tests_total==0){ die "FAILED--no tests were run for some reason.\n"; } else { my $rate = 0.0; if ($tests_total > 0) { $rate = sprintf "%.2f", 100.0 * ($pass__total / $tests_total); } printf " %d/%d subtests failed, %.2f%% okay.\n", $error_total, $tests_total, $rate; } =head1 NAME perlivp - Perl Installation Verification Procedure =head1 SYNOPSIS B<perlivp> [B<-p>] [B<-v>] [B<-h>] =head1 DESCRIPTION The B<perlivp> program is set up at Perl source code build time to test the Perl version it was built under. It can be used after running: make install (or your platform's equivalent procedure) to verify that B<perl> and its libraries have been installed correctly. A correct installation is verified by output that looks like: ok 1 ok 2 etc. =head1 OPTIONS =over 5 =item B<-h> help Prints out a brief help message. =item B<-p> print preface Gives a description of each test prior to performing it. =item B<-v> verbose Gives more detailed information about each test, after it has been performed. Note that any failed tests ought to print out some extra information whether or not -v is thrown. =back =head1 DIAGNOSTICS =over 4 =item * print "# Perl binary '$perlpath' does not appear executable.\n"; Likely to occur for a perl binary that was not properly installed. Correct by conducting a proper installation. =item * print "# Perl version '$]' installed, expected $ivp_VERSION.\n"; Likely to occur for a perl that was not properly installed. Correct by conducting a proper installation. =item * print "# Perl \@INC directory '$_' does not appear to exist.\n"; Likely to occur for a perl library tree that was not properly installed. Correct by conducting a proper installation. =item * print "# Needed module '$_' does not appear to be properly installed.\n"; One of the two modules that is used by perlivp was not present in the installation. This is a serious error since it adversely affects perlivp's ability to function. You may be able to correct this by performing a proper perl installation. =item * print "# Required module '$_' does not appear to be properly installed.\n"; An attempt to C<eval "require $module"> failed, even though the list of extensions indicated that it should succeed. Correct by conducting a proper installation. =item * print "# Unnecessary module 'bLuRfle' appears to be installed.\n"; This test not coming out ok could indicate that you have in fact installed a bLuRfle.pm module or that the C<eval " require \"$module_name.pm\"; "> test may give misleading results with your installation of perl. If yours is the latter case then please let the author know. =item * print "# file",+($#missing == 0) ? '' : 's'," missing from installation:\n"; One or more files turned up missing according to a run of C<ExtUtils::Installed -E<gt> validate()> over your installation. Correct by conducting a proper installation. =back For further information on how to conduct a proper installation consult the INSTALL file that comes with the perl source and the README file for your platform. =head1 AUTHOR Peter Prymmer =cut
[+]
..
[-] lessecho
[edit]
[-] lesskey
[edit]
[-] zgrep
[edit]
[-] false
[edit]
[-] ps2pdf14
[edit]
[-] ionice
[edit]
[-] enchant-lsmod
[edit]
[-] fmt
[edit]
[-] vimtutor
[edit]
[-] getopt
[edit]
[-] flock
[edit]
[-] expr
[edit]
[-] date
[edit]
[-] mariadb-check
[edit]
[-] as
[edit]
[-] slabtop
[edit]
[-] pod2text
[edit]
[-] join
[edit]
[-] sha384sum
[edit]
[-] precat
[edit]
[-] pgrep
[edit]
[-] mariadb-tzinfo-to-sql
[edit]
[-] objdump
[edit]
[-] logname
[edit]
[-] addr2line
[edit]
[-] bzcat
[edit]
[-] chmod
[edit]
[-] hunspell
[edit]
[-] dropuser
[edit]
[-] sh
[edit]
[-] xsubpp
[edit]
[-] ruby
[edit]
[-] vi
[edit]
[-] ex
[edit]
[-] ssh-keyscan
[edit]
[-] pg_dump
[edit]
[-] compare
[edit]
[-] bunzip2
[edit]
[-] dir
[edit]
[-] mariadb
[edit]
[-] flex++
[edit]
[-] pmap
[edit]
[-] bzdiff
[edit]
[-] nroff
[edit]
[-] crontab
[edit]
[-] ssh-keygen
[edit]
[-] csplit
[edit]
[-] utmpdump
[edit]
[-] pip3
[edit]
[-] zforce
[edit]
[-] troff
[edit]
[-] crontab.cagefs
[edit]
[-] c++
[edit]
[-] autoupdate
[edit]
[-] mysqlcheck
[edit]
[-] gcov-tool
[edit]
[-] openssl
[edit]
[-] dig
[edit]
[-] cpan
[edit]
[-] mariadb-dump
[edit]
[-] lesspipe.sh
[edit]
[-] gcc-nm
[edit]
[-] b2sum
[edit]
[-] easy_install-3
[edit]
[-] mariadb-binlog
[edit]
[-] mysql_find_rows
[edit]
[-] automake-1.16
[edit]
[-] pdf2dsc
[edit]
[-] x86_64-redhat-linux-gcc-8
[edit]
[-] xxd
[edit]
[-] top
[edit]
[-] mariadb-plugin
[edit]
[-] toe
[edit]
[-] c89
[edit]
[-] wget
[edit]
[-] arpaname
[edit]
[-] mariadb-dumpslow
[edit]
[-] sha224sum
[edit]
[-] nslookup
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] tzselect
[edit]
[-] ld.bfd
[edit]
[-] stream
[edit]
[-] prezip
[edit]
[-] gpgv
[edit]
[-] composite
[edit]
[-] basename
[edit]
[-] pathchk
[edit]
[-] soelim
[edit]
[-] python2
[edit]
[-] preunzip
[edit]
[-] git-shell
[edit]
[-] ps2pdf13
[edit]
[-] pango-list
[edit]
[-] mariadb-waitpid
[edit]
[-] gcov
[edit]
[-] getent
[edit]
[-] ghostscript
[edit]
[-] sha1sum
[edit]
[-] ps2pdfwr
[edit]
[-] zegrep
[edit]
[-] infotocap
[edit]
[-] sync
[edit]
[-] post-grohtml
[edit]
[-] test
[edit]
[-] tclsh
[edit]
[-] cal
[edit]
[-] unlink
[edit]
[-] mysqlaccess
[edit]
[-] traceroute
[edit]
[-] autoreconf
[edit]
[-] colcrt
[edit]
[-] zsoelim
[edit]
[-] ar
[edit]
[-] tty
[edit]
[-] enchant
[edit]
[-] which
[edit]
[-] msql2mysql
[edit]
[-] strace
[edit]
[-] mkfifo
[edit]
[-] h2xs
[edit]
[-] mariadb-find-rows
[edit]
[-] pkill
[edit]
[-] autoconf
[edit]
[-] vmstat
[edit]
[-] zmore
[edit]
[-] renew-dummy-cert
[edit]
[-] stdbuf
[edit]
[-] setterm
[edit]
[-] mcdiff
[edit]
[-] selectorctl
[edit]
[-] tic
[edit]
[-] scl
[edit]
[-] rename
[edit]
[-] idn
[edit]
[-] sha256sum
[edit]
[-] more
[edit]
[-] unzipsfx
[edit]
[-] mysqladmin
[edit]
[-] users
[edit]
[-] gpgsplit
[edit]
[-] g++
[edit]
[-] printenv
[edit]
[-] tee
[edit]
[-] gtbl
[edit]
[-] pre-grohtml
[edit]
[-] conjure
[edit]
[-] gpg-error
[edit]
[-] truncate
[edit]
[-] fc-validate
[edit]
[-] fgrep
[edit]
[-] ssh
[edit]
[-] bashbug-64
[edit]
[-] pkgconf
[edit]
[-] fold
[edit]
[-] fc-conflist
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] gawk
[edit]
[-] setsid
[edit]
[-] delv
[edit]
[-] comm
[edit]
[-] isosize
[edit]
[-] at
[edit]
[-] gunzip
[edit]
[-] mysql
[edit]
[-] rev
[edit]
[-] login
[edit]
[-] link
[edit]
[-] znew
[edit]
[-] gcc-ar
[edit]
[-] git
[edit]
[-] ifnames
[edit]
[-] ssh-copy-id
[edit]
[-] bzip2recover
[edit]
[-] tload
[edit]
[-] mysql_config
[edit]
[-] fc-query
[edit]
[-] dnstap-read
[edit]
[-] pydoc3
[edit]
[-] echo
[edit]
[-] install
[edit]
[-] python3.6
[edit]
[-] pkg-config
[edit]
[-] mariadb-hotcopy
[edit]
[-] pyvenv-3
[edit]
[-] fc-cache-64
[edit]
[-] mail
[edit]
[-] gencat
[edit]
[-] expand
[edit]
[-] clusterdb
[edit]
[-] geoiplookup6
[edit]
[-] timeout
[edit]
[-] dropdb
[edit]
[-] grotty
[edit]
[-] perlivp
[edit]
[-] file
[edit]
[-] montage
[edit]
[-] mariadb-conv
[edit]
[-] zipcloak
[edit]
[-] gcc
[edit]
[-] ipcs
[edit]
[-] bison
[edit]
[-] dircolors
[edit]
[-] env
[edit]
[-] yes
[edit]
[-] geoiplookup
[edit]
[-] python3
[edit]
[-] sftp
[edit]
[-] nsupdate
[edit]
[-] base64
[edit]
[-] cat
[edit]
[-] mktemp
[edit]
[-] vim
[edit]
[-] replace
[edit]
[-] run-with-aspell
[edit]
[-] less
[edit]
[-] uniq
[edit]
[-] mc
[edit]
[-] zipgrep
[edit]
[-] tail
[edit]
[-] arch
[edit]
[-] zip
[edit]
[-] pwd
[edit]
[-] pg_dumpall
[edit]
[-] convert
[edit]
[-] mariadb-convert-table-format
[edit]
[-] pod2html
[edit]
[-] rvi
[edit]
[-] atq
[edit]
[-] catchsegv
[edit]
[-] vimdiff
[edit]
[-] split
[edit]
[-] spell
[edit]
[-] aclocal-1.16
[edit]
[-] animate
[edit]
[-] autoheader
[edit]
[-] rm
[edit]
[-] zcmp
[edit]
[-] mariadb-show
[edit]
[-] gem
[edit]
[-] diff
[edit]
[-] scl_enabled
[edit]
[-] tclsh8.6
[edit]
[-] vacuumdb
[edit]
[-] fc-list
[edit]
[-] python3.6m
[edit]
[-] bzcmp
[edit]
[-] xsltproc
[edit]
[-] bash
[edit]
[-] sdiff
[edit]
[-] script
[edit]
[-] perl
[edit]
[-] strip
[edit]
[-] fc-match
[edit]
[-] wc
[edit]
[-] tbl
[edit]
[-] rview
[edit]
[-] ssh-add
[edit]
[-] view
[edit]
[-] infocmp
[edit]
[-] bzip2
[edit]
[-] zless
[edit]
[-] unexpand
[edit]
[-] perlml
[edit]
[-] namei
[edit]
[-] kill
[edit]
[-] eps2eps
[edit]
[-] recode
[edit]
[-] nohup
[edit]
[-] readelf
[edit]
[-] realpath
[edit]
[-] who
[edit]
[-] pic
[edit]
[-] identify
[edit]
[-] zfgrep
[edit]
[-] gsnd
[edit]
[-] rnano
[edit]
[-] c99
[edit]
[-] cmp
[edit]
[-] hostid
[edit]
[-] sqlite3
[edit]
[-] numfmt
[edit]
[-] mcookie
[edit]
[-] mariadb-embedded
[edit]
[-] passwd
[edit]
[-] mysqldump
[edit]
[-] gsoelim
[edit]
[-] mysql_waitpid
[edit]
[-] nproc
[edit]
[-] gpic
[edit]
[-] id
[edit]
[-] c++filt
[edit]
[-] chgrp
[edit]
[-] free
[edit]
[-] groff
[edit]
[-] gpg-zip
[edit]
[-] objcopy
[edit]
[-] watch
[edit]
[-] shuf
[edit]
[-] git-receive-pack
[edit]
[-] sort
[edit]
[-] gprof
[edit]
[-] pinentry-curses
[edit]
[-] autoscan
[edit]
[-] captoinfo
[edit]
[-] ssh-agent
[edit]
[-] createdb
[edit]
[-] look
[edit]
[-] zipnote
[edit]
[-] tset
[edit]
[-] head
[edit]
[-] automake
[edit]
[-] stat
[edit]
[-] find
[edit]
[-] perlthanks
[edit]
[-] nl
[edit]
[-] gzip
[edit]
[-] podchecker
[edit]
[-] batch
[edit]
[-] bzless
[edit]
[-] ls
[edit]
[-] du
[edit]
[-] col
[edit]
[-] nm
[edit]
[-] gs
[edit]
[-] xmlcatalog
[edit]
[-] sha512sum
[edit]
[-] whereis
[edit]
[-] pango-view
[edit]
[-] ps2ps2
[edit]
[-] hostname
[edit]
[-] zipsplit
[edit]
[-] mesg
[edit]
[-] fc-scan
[edit]
[-] pinentry
[edit]
[-] cc
[edit]
[-] lynx
[edit]
[-] gneqn
[edit]
[-] mariadb-setpermission
[edit]
[-] mysqlimport
[edit]
[-] skill
[edit]
[-] unzip
[edit]
[-] sum
[edit]
[-] fc-cache
[edit]
[-] true
[edit]
[-] ipcrm
[edit]
[-] pl2pm
[edit]
[-] touch
[edit]
[-] vdir
[edit]
[-] fc-pattern
[edit]
[-] xargs
[edit]
[-] lex
[edit]
[-] diff3
[edit]
[-] ptx
[edit]
[-] python2.7
[edit]
[-] git-upload-archive
[edit]
[-] seq
[edit]
[-] cut
[edit]
[-] cagefs_enter.proxied
[edit]
[-] xmlwf
[edit]
[-] ps2pdf12
[edit]
[-] pinky
[edit]
[-] localedef
[edit]
[-] mariadb-slap
[edit]
[-] flex
[edit]
[-] mcview
[edit]
[-] instmodsh
[edit]
[-] mysqlbinlog
[edit]
[-] md5sum
[edit]
[-] dd
[edit]
[-] screen
[edit]
[-] zipinfo
[edit]
[-] grep
[edit]
[-] pwdx
[edit]
[-] nice
[edit]
[-] patch
[edit]
[-] printf
[edit]
[-] autom4te
[edit]
[-] getconf
[edit]
[-] egrep
[edit]
[-] [
[edit]
[-] mv
[edit]
[-] mcedit
[edit]
[-] ps
[edit]
[-] clear
[edit]
[-] mysqlshow
[edit]
[-] zdiff
[edit]
[-] tar
[edit]
[-] ping
[edit]
[-] curl
[edit]
[-] column
[edit]
[-] mariadb-import
[edit]
[-] libtoolize
[edit]
[-] ld
[edit]
[-] cldetect
[edit]
[-] xmllint
[edit]
[-] funzip
[edit]
[-] dirname
[edit]
[-] GET
[edit]
[-] make
[edit]
[-] ps2ps
[edit]
[-] eqn
[edit]
[-] fc-cat
[edit]
[-] tac
[edit]
[-] uptime
[edit]
[-] 7za
[edit]
[-] base32
[edit]
[-] rmdir
[edit]
[-] scalar
[edit]
[-] zcat
[edit]
[-] sleep
[edit]
[-] pod2man
[edit]
[-] taskset
[edit]
[-] readlink
[edit]
[-] unversioned-python
[edit]
[-] podselect
[edit]
[-] mogrify
[edit]
[-] gtar
[edit]
[-] mailx
[edit]
[-] pydoc-3
[edit]
[-] size
[edit]
[-] mkdir
[edit]
[-] mariadb-secure-installation
[edit]
[-] gpg-agent
[edit]
[-] snice
[edit]
[-] geqn
[edit]
[-] pod2usage
[edit]
[-] tsort
[edit]
[-] tabs
[edit]
[-] uapi
[edit]
[-] sprof
[edit]
[-] ps2ascii
[edit]
[-] logger
[edit]
[-] shred
[edit]
[-] gpg
[edit]
[-] freetype-config
[edit]
[-] reindexdb
[edit]
[-] createuser
[edit]
[-] libnetcfg
[edit]
[-] aclocal
[edit]
[-] splain
[edit]
[-] rvim
[edit]
[-] renice
[edit]
[-] paste
[edit]
[-] my_print_defaults
[edit]
[-] ps2epsi
[edit]
[-] gzexe
[edit]
[-] prezip-bin
[edit]
[-] h2ph
[edit]
[-] display
[edit]
[-] hexdump
[edit]
[-] git-upload-pack
[edit]
[-] reset
[edit]
[-] nano
[edit]
[-] tr
[edit]
[-] ps2pdf
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] ispell
[edit]
[-] enc2xs
[edit]
[-] scl_source
[edit]
[-] gcov-dump
[edit]
[-] df
[edit]
[-] pg_restore
[edit]
[-] gmake
[edit]
[-] atrm
[edit]
[-] gnroff
[edit]
[-] make-dummy-cert
[edit]
[-] perldoc
[edit]
[-] neqn
[edit]
[-] perlbug
[edit]
[-] piconv
[edit]
[-] iconv
[edit]
[-] ln
[edit]
[-] chrt
[edit]
[-] Mail
[edit]
[-] bzgrep
[edit]
[-] ul
[edit]
[-] grops
[edit]
[-] perl5.26.3
[edit]
[-] libtool
[edit]
[-] stty
[edit]
[-] cpp
[edit]
[-] gcc-ranlib
[edit]
[-] psql
[edit]
[-] import
[edit]
[-] gm
[edit]
[-] groups
[edit]
[-] bzmore
[edit]
[-] mytop
[edit]
[-] mariadb-access
[edit]
[-] chown
[edit]
[-] strings
[edit]
[-] aspell
[edit]
[-] ranlib
[edit]
[-] prove
[edit]
[-] cp
[edit]
[-] pip-3
[edit]
[-] tput
[edit]
[-] cksum
[edit]
[-] pr
[edit]
[-] scp
[edit]
[-] php
[edit]
[-] pdf2ps
[edit]
[-] locale
[edit]
[-] host
[edit]
[-] awk
[edit]
[-] tmpwatch
[edit]
[-] sed
[edit]
[-] uname
[edit]
[-] colrm
[edit]
[-] m4
[edit]
[-] whoami
[edit]
[-] word-list-compress
[edit]
[-] ldd
[edit]
[-] mariadb-admin
[edit]
[-] rsync
[edit]
[-] factor
[edit]
[-] gtroff
[edit]
[-] od
[edit]