#! /bin/csh -f
############################################################################
#
# MODULE:  cgetcmds
#
############################################################################
#
# Abstract:
#    This command file is used to unload the files from the tape and
#    instructs the user to issue the "setup" command.
#
############################################################################
#
# CParaOPS5
# Change Log:
#    29 Sep 89 V5.3  Dirk Kalp
#                    Created the file.
#
# Copyright (c) 1989 Carnegie-Mellon University
# All rights reserved.  The CMU software License Agreement
# specifies the terms and conditions for use and redistribution.
#
############################################################################

echo "First we get the 4 subdirectories lhs, rhs, lib, and programs."
echo "    tar xv lhs rhs lib programs"
tar xv lhs rhs lib programs

echo ""
echo "Now we get the setup file which you use to configure the system."
echo "    tar xv setup"
tar xv setup
echo "    chmod u+x setup"
chmod u+x setup

echo ""
echo "Now you must invoke the setup command file with"
echo "           setup <version>"
echo "where <version> is either ENCORE, VAX, or UNIPROC"
echo ""


