|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 1709 (0x6ad)
Types: TextFile
Notes: R1k Text-file segment
└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
└─⟦5a81ac88f⟧ »Space Info Vol 1«
└─⟦171ac0c53⟧
└─⟦this⟧
#! /bin/csh -f
if ( $1 == "" ) then
echo "You need to specify the directory where Rational Access will be"
echo "installed, as the first paramaeter to the install program. i.e."
echo " "
echo "install_release /vendor/rational/rational_access/rev0_8_0"
echo " "
exit
endif
if ( -e $1 ) then
if ( -f $1 ) then
echo "There is already a file $1. Delete the files or choose another"
echo "directory for the install."
exit
endif
else
echo -n Directory $1 does not exist. Create one\?" "\[y\]" "
set ANSWER=$<
if ( ${ANSWER} == "" || ${ANSWER} == 'Y' || ${ANSWER} == 'y' ) then
if ( `/bin/uname` == "SunOS" ) then
mkdir -p $1
else if ( `/bin/uname` == "AIX" ) then
mkdir $1
endif
endif
if ( ! -e $1 ) then
echo "Unable to create directory. Create directory manually and"
echo "rerun the install script."
exit
endif
else
exit
endif
endif
if ( ! -e $1/rational.Z ) cp rational.Z $1
cd $1
if ( -e rational ) then
echo ""
echo -n Rational seems to be unpacked. Do it again\?" "\[y\]" "
set ANSWER=$<
else
set ANSWER=""
endif
if ( ${ANSWER} == "" || ${ANSWER} == 'Y' || ${ANSWER} == 'y' ) then
echo "Unpacking rational.Z (takes about a minute)"
uncompress -c rational.Z | tar -xf -
endif
echo "*helpfile: $1/Rational_Access/Help_Data" >> \
$1/app-defaults/RATIONAL
echo "*envHelpfile: $1/Rational_Access/Env_Help_Topics" >> \
$1/app-defaults/RATIONAL
sed -e s:ACCESSHOME_VALUE:${1}: < config.csh > config.csh_tmp
mv config.csh_tmp config.csh
echo "Rational Access Installation completed succesfully