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: ┃ I T

⟦54cbf9df1⟧ TextFile

    Length: 678 (0x2a6)
    Types: TextFile
    Names: »Install«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/se/se_h/Install« 

TextFile

#! /bin/sh
# 
# $Header: Install,v 1.2 86/10/07 15:09:08 arnold Exp $
# 
# $Log:	Install,v $
# Revision 1.2  86/10/07  15:09:08  arnold
# Fixed to make the help directory and use relative paths.
# 
# Revision 1.1  86/05/06  14:04:04  osadr
# Initial revision
# 
# 
# 
: Install -- put se help files into their proper directory.
:	     This program is called from the makefile.

INSTALL=$1
shift
umask 022

if [ ! -d $INSTALL ]
then
	echo making directory $INSTLL
	if mkdir $INSTALL
	then
		:
	else
		echo could not mkdir $INSTALL
		exit 1
	fi
fi

for i in $*
do
	echo installing $i
	./detab < $i > $INSTALL/$i
done

: we really should do some error checking, but what the heck.