home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / se / part7 / se_h / Install < prev    next >
Encoding:
Text File  |  1986-11-30  |  278 b   |  16 lines

  1. #! /bin/sh
  2. : Install -- put se help files into their proper directory.
  3. :         This program is called from the makefile.
  4.  
  5. INSTALL=$1
  6. shift
  7. umask 022
  8.  
  9. for i in $*
  10. do
  11.     echo installing $i
  12.     detab < $i > $INSTALL/$i
  13. done
  14.  
  15. : we really should do some error checking, but what the heck.
  16.