home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume4
/
se
/
part7
/
se_h
/
Install
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-11-30
|
278 b
|
16 lines
#! /bin/sh
: Install -- put se help files into their proper directory.
: This program is called from the makefile.
INSTALL=$1
shift
umask 022
for i in $*
do
echo installing $i
detab < $i > $INSTALL/$i
done
: we really should do some error checking, but what the heck.