Skip site navigation (1)Skip section navigation (2)
Date:      Fri,  2 Jul 1999 03:29:34 -0700 (PDT)
From:      thepinkpages@email.com
To:        freebsd-gnats-submit@freebsd.org
Subject:   docs/12486: listing of (56) utilities in /bin:/sbin:/usr/bin:/usr/sbin without whatis(1) information
Message-ID:  <19990702102934.8F805151CF@hub.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         12486
>Category:       docs
>Synopsis:       listing of (56) utilities in /bin:/sbin:/usr/bin:/usr/sbin without whatis(1) information
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-doc
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jul  2 03:30:01 PDT 1999
>Closed-Date:
>Last-Modified:
>Originator:     Jesus Monroy
>Release:        FreeBSD 3.1-RELEASE #0
>Organization:
>Environment:
FreeBSD vidi.mozie.com 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Jan  1 03:20:27 PST 1996     root@vidi.dnull.com:/usr/src/sys/compile/VIDI  i386 
>Description:
----------
/bin
----------
[: nothing appropriate
----------
/sbin
----------
dhclient: nothing appropriate
dhclient-script: nothing appropriate
fastboot: nothing appropriate
fasthalt: nothing appropriate
kget: nothing appropriate
mount_ntfs: nothing appropriate
rdump: nothing appropriate
rrestore: nothing appropriate
----------
/usr/bin
----------
CC: nothing appropriate
byacc: nothing appropriate
c++filt: nothing appropriate
captoinfo: nothing appropriate
cc: nothing appropriate
doscmd: nothing appropriate
find2perl: nothing appropriate
flex++: nothing appropriate
gdbreplay: nothing appropriate
gensetdefs: nothing appropriate
gprof4: nothing appropriate
gzcat: nothing appropriate
hoststat: nothing appropriate
lex: nothing appropriate
lex++: nothing appropriate
makeinfo: nothing appropriate
miniperl: nothing appropriate
mk_cmds: nothing appropriate
nex: nothing appropriate
nvi: nothing appropriate
nview: nothing appropriate
perl5.00502: nothing appropriate
perl5.00503: nothing appropriate
pod2latex: nothing appropriate
pod2text: nothing appropriate
ptx: nothing appropriate
ree: nothing appropriate
sendbug: nothing appropriate
sockstat: nothing appropriate
sperl5.00502: nothing appropriate
sperl5.00503: nothing appropriate
splain: nothing appropriate
suidperl: nothing appropriate
sum: nothing appropriate
systags: nothing appropriate
tic: nothing appropriate
zegrep: nothing appropriate
zfgrep: nothing appropriate
----------
/usr/sbin
----------
callbootd: nothing appropriate
ctm_dequeue: nothing appropriate
named-bootconf: nothing appropriate
nsupdate: nothing appropriate
pccardc: nothing appropriate
pmap_dump: nothing appropriate
pmap_set: nothing appropriate
purgestat: nothing appropriate
rpc.ypupdated: nothing appropriate

>How-To-Repeat:
#!/bin/sh
#
#  written by Jesus Monroy, Jr. (thepinkpages@email.com
#  date: 1999.07.02
#  purpose: validate that base utilities have whatis(1) entry
#
D="/bin /sbin /usr/bin /usr/sbin"

for DIR in $D ; do
    cd $DIR
    echo ----------
    echo $DIR
    echo ----------
    L=`ls -1`
    for U in $L; do
        R=`whatis $U | grep "nothing"`
        if [ X"$R" != X"" ] ; then
            echo $R
        fi
    done
done 
>Fix:


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990702102934.8F805151CF>