DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T m

⟦0f1498713⟧ TextFile

    Length: 760 (0x2f8)
    Types: TextFile
    Names: »manstat«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/stat-5.3/eu/stat/src/manstat« 

TextFile

#! /bin/sh

# The DOCDIR variable should be set to suit the needs for your system.
DOCDIR=/faculty/perlman/stat/stat/doc
VIEWER=${VIEWER-$PAGER}
VIEWER=${PAGER-/bin/cat}

# This shell script replaces the old version of the manstat program.
# This version simply prints the formatted copies of the manual entries.

PGM=`basename $0`
SUFFIX=man

if test -d $DOCDIR
then
	cd $DOCDIR
else
	echo "There is no directory of |STAT manual entries"
	echo "Your system administrator should modify the $PGM program"
	exit 1
fi

if test $# = 0
then
	$VIEWER intro.$SUFFIX
else
	for prog
	do
		manfile=$prog.$SUFFIX
		if test -r $manfile
		then
			$VIEWER $manfile
		else
			echo "No |STAT manual entry on $prog.  Calling 'man' for help."
			man $prog
		fi
	done
fi

exit 0