---------- /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
Responsible Changed From-To: freebsd-doc->mpp I've already been looking into this, so I'll field this one.
thepinkpages@email.com writes: > 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 des@flood ~% uname -a FreeBSD flood.ping.uio.no 3.2-STABLE FreeBSD 3.2-STABLE #0: Thu Jun 3 20:10:45 CEST 1999 des@flood.ping.uio.no:/usr/src/sys/compile/FLOOD i386 des@flood ~% whatis dhclient dhclient-script fastboot fasthalt kget mount_nfs rdump rrestore dhclient(8) - Dynamic Host Configuration Protocol Client dhclient-script(8) - DHCP client network configuration script dhclient.conf(5) - DHCP client configuration file dhclient.leases(5) - DHCP client lease database dhclient-script(8) - DHCP client network configuration script fastboot: nothing appropriate fasthalt: nothing appropriate kget(8) - print kernel change information mount_nfs(8) - mount nfs file systems rdump: nothing appropriate rrestore: nothing appropriate 'nuff said. DES -- Dag-Erling Smorgrav - des@flood.ping.uio.no
Since this is no real PR - can it be closed, or does it still need to trash the GNATS-db? I mean, we are aware of the fact that not every tool has a manpage, there is no need of a PR to remind us. Alex
State Changed From-To: open->closed A number of these have been fixed over time, and most of the rest are from third party packages, and most are pretty obvious what they refer to. Most will at least display a man page if you actually type 'man whatever'. The few that are left after that are not worth pursuing.