#!/bin/sh
#   this script runs the SAS program fromc.sas
#   it is important to note that when launched from httpd there are
#   no environment variables set, hence HOME and PATH are defined
#   3/25/94   Larry Hoyle  <lhoyle@stat1.cc.ku.edu>

PATH=/homea/lhoyle/public_html/cgi-bin:/homea/lhoyle/public_html:$PATH
HOME=/homea/lhoyle; export HOME
cd /homea/lhoyle/public_html/cgi-bin

#
# SAS startup shell script
# 11/18/92 Wes Hubert <wes@kuhub.cc.ku.edu>

# Modify the following line to point to the location of SAS
SAS_ROOT=/homeb/sas609/sas609
export SAS_ROOT


# Search SAS directory first
PATH=$SAS_ROOT:$PATH ; export PATH


# SAS requires its own TERMINFO files
TERMINFO=/homeb/sas609/sas609/terminfo; export TERMINFO
TERMINFOADD=/homeb/sas609/sas609/terminfo; export TERMINFOADD


# Use absolute path for SAS executable
cat -u | $SAS_ROOT/sas "mwsug94.sas"
