|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ I T ┃
Length: 1710 (0x6ae) Types: TextFile Names: »INSTALL_RELEASE«
└─⟦6c4f54b10⟧ Bits:30000747 8mm tape, Rational 1000, ACCESS 0_8_0 INTERNAL RELEASE └─ ⟦5d1d5404f⟧ »DATA« └─⟦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"