From nobody@FreeBSD.ORG Sat Jul  3 04:13:30 1999
Return-Path: <nobody@FreeBSD.ORG>
Received: by hub.freebsd.org (Postfix, from userid 32767)
	id 19B4714D4D; Sat,  3 Jul 1999 04:13:30 -0700 (PDT)
Message-Id: <19990703111330.19B4714D4D@hub.freebsd.org>
Date: Sat,  3 Jul 1999 04:13:30 -0700 (PDT)
From: jmonroy@email.com
Sender: nobody@FreeBSD.ORG
To: freebsd-gnats-submit@freebsd.org
Subject: listing of (33) utilities in /bin:/sbin:/usr/bin:/usr/sbin without man(1) information
X-Send-Pr-Version: www-1.0

>Number:         12493
>Category:       docs
>Synopsis:       listing of (33) utilities in /bin:/sbin:/usr/bin:/usr/sbin without man(1) information
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-doc
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          doc-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jul  3 04:20:01 PDT 1999
>Closed-Date:    Sat Jul 3 04:51:19 PDT 1999
>Last-Modified:  Sat Jul  3 05:07:37 PDT 1999
>Originator:     Jesus Monroy, Jr.
>Release:        3.1-RELEASE
>Organization:
Digital Marshalls
>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
----------
----------
/sbin
----------
No manual entry for dhclient
No manual entry for dhclient-script
No manual entry for kget
No manual entry for mount_ntfs
----------
/usr/bin
----------
No manual entry for CC
No manual entry for c++filt
No manual entry for doscmd
No manual entry for find2perl
No manual entry for gdbreplay
No manual entry for gensetdefs
No manual entry for gprof4
No manual entry for hoststat
No manual entry for makeinfo
No manual entry for miniperl
No manual entry for mk_cmds
No manual entry for perl5.00502
No manual entry for perl5.00503
No manual entry for pod2latex
No manual entry for pod2text
No manual entry for ptx
No manual entry for sockstat
No manual entry for sperl5.00502
No manual entry for sperl5.00503
No manual entry for splain
No manual entry for suidperl
No manual entry for systags
----------
/usr/sbin
----------
No manual entry for callbootd
No manual entry for named-bootconf
No manual entry for nsupdate
No manual entry for pccardc
No manual entry for pmap_dump
No manual entry for purgestat
No manual entry for rpc.ypupdated

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

for DIR in $D ; do
    echo ---------- >> $F
    echo $DIR       >> $F
    echo ---------- >> $F
    cd $DIR
    L=`ls -1`
    for U in $L; do
        R=`whatis $U | grep "nothing"`
        if [ X"$R" != X"" ] ; then
            R2=`man $U 2> /dev/null`
            if [ $? -ne 0 ] ; then
                echo No manual entry for $U >> $F
            fi
        fi
    done
done 

>Fix:


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: mpp 
State-Changed-When: Sat Jul 3 04:51:19 PDT 1999 
State-Changed-Why:  
Pretty much a duplicate of docs/12486. 

In the future, if additional information has been found after the initial 
PR, reply to the verification message that GNATS sent you.  That way 
the new info is recorded by GNATS, and no one has to review the  
new PR to determine if it is a new problem or just a re-hash of 
a previous PR. 

Now, I am already working on this, as I have stated in at least 2 (maybe 3) 
other e-mails, please do not submit any new problem reports about this. 
If you find other utilities that are without man pages, please refer back 
to PR docs/12486. 
In a perfect world, I would liek every binary in the standard search  
path to have a man page that shows up with "whatis" or "apropose", but 
I don't think that will haopen (perl being one of the major problems here). 

So until then, please just follow-ups to the orignal PR so I (or anyone 
else interested in the problem) can keep it all straight. 
>Unformatted:
