Date: Sat, 3 Jul 1999 04:13:30 -0700 (PDT) From: jmonroy@email.com To: freebsd-gnats-submit@freebsd.org Subject: docs/12493: listing of (33) utilities in /bin:/sbin:/usr/bin:/usr/sbin without man(1) information Message-ID: <19990703111330.19B4714D4D@hub.freebsd.org>
next in thread | raw e-mail | index | archive | help
>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: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 3 04:20:01 PDT 1999 >Closed-Date: >Last-Modified: >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: >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?19990703111330.19B4714D4D>