From owner-freebsd-bugs Tue May 16 05:12:35 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA08641 for bugs-outgoing; Tue, 16 May 1995 05:12:35 -0700 Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id FAA08634 for ; Tue, 16 May 1995 05:12:29 -0700 Received: from ole.cs.tu-berlin.de (wosch@ole.cs.tu-berlin.de [130.149.28.1]) by mail.cs.tu-berlin.de (8.6.10/8.6.10) with ESMTP id OAA22620 for ; Tue, 16 May 1995 14:12:17 +0200 From: Wolfram Schneider Received: (wosch@localhost) by ole.cs.tu-berlin.de (8.6.10/8.6.6) id OAA07384; Tue, 16 May 1995 14:12:14 +0200 Date: Tue, 16 May 1995 14:12:14 +0200 Message-Id: <199505161212.OAA07384@ole.cs.tu-berlin.de> To: bugs@FreeBSD.org Subject: missing manpages MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: bugs-owner@FreeBSD.org Precedence: bulk /bin /sbin No manual entry for dset /usr/bin No manual entry for c++ No manual entry for curseperl No manual entry for cvsinit No manual entry for ex No manual entry for f77 No manual entry for g++ No manual entry for gencat No manual entry for ibcs2 No manual entry for kzip No manual entry for makedoc No manual entry for makeinfo No manual entry for mk_cmds No manual entry for neqn No manual entry for nex No manual entry for nvi No manual entry for nview No manual entry for pagesize No manual entry for psroff No manual entry for ptx No manual entry for texindex No manual entry for uulog No manual entry for uuname No manual entry for uupick No manual entry for uusched No manual entry for uuto No manual entry for view No manual entry for ypwhich No manual entry for zgrep /usr/sbin No manual entry for bad144 No manual entry for callbootd No manual entry for ctm_scan No manual entry for dbsym No manual entry for mailstats No manual entry for manctl No manual entry for mixer No manual entry for mtrace No manual entry for nsquery No manual entry for nstest No manual entry for pmap_dump No manual entry for pmap_set No manual entry for praliases No manual entry for spkrtest No manual entry for tzsetup No manual entry for yppoll No manual entry for ypset #!/bin/sh # # manmiss - print missing manpages for dir in `(echo $PATH; sysctl -n user.cs_path 2> /dev/null) | \ awk '{gsub(":", "\n"); print}' | sort -u` do if cd $dir; then echo $dir for page in * do man -w $page >/dev/null done fi done