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

⟦ebb0abc68⟧ TextFile

    Length: 405 (0x195)
    Types: TextFile
    Names: »catmanstat«

Derivation

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

TextFile

#! /bin/sh

DOCDIR=/faculty/perlman/stat/stat/doc
TROFFDIR=.
MAN=.man

for prog
do
	basefile=`basename $prog .1`
	basefile=`basename $basefile $MAN`
	# echo -------- $basefile

	srcfile=$basefile.1
	manfile=$DOCDIR/$basefile$MAN

	chmod 644 $manfile
	# ls -l $srcfile $manfile
	nroff -man.new online.macros $srcfile | cat -s > $manfile
	chmod 444 $manfile
	# unctrl < $manfile > unctrl/$basefile$MAN
done