|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ I T ┃
Length: 678 (0x2a6) Types: TextFile Names: »Install«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/se/se_h/Install«
#! /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.