#! /bin/sh # Sun-$Revision: 21.8 $ # Copyright 1995 Sun Microsystems, Inc. and Stanford University. # See the LICENSE file for license information. # Installation script for the Self system. # Unpack Self-4.0.tar.{Z,gz} in current directory. #------------- usage () { echo $0: usage: $0 Self-archive-file-name echo echo Possible archive file names are: echo Self-4.0.sunos.tar.Z Self-4.0.sunos.tar.gz echo Self-4.0.solaris.tar.Z Self-4.0.solaris.tar.gz exit 1 } if [ $# -ne 1 ] then usage fi case $1 in Self-4.0.sunos.tar.gz) ;; Self-4.0.sunos.tar.Z) ;; Self-4.0.solaris.tar.gz) ;; Self-4.0.solaris.tar.Z) break ;; *) usage;; esac SelfFile=$1 #------------- PATH=/usr/ucb:/usr/bin:/usr/sbin:$PATH export PATH cat <