|
|
DataMuseum.dkPresents historical artifacts from the history of: Regnecentalen RC-900 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Regnecentalen RC-900 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T U
Length: 1780 (0x6f4)
Types: TextFile
Notes: UNIX file
Names: »UNINSTALL«
└─⟦0f331009c⟧ Bits:30004160/disk2.imd SW95860 UNIPLEX+ release 1.0 (dansk)
└─⟦0f331009c⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦1627fb8ec⟧ Bits:30004169/disk7.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦1627fb8ec⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦223239689⟧ Bits:30004160/disk3.imd SW95860 UNIPLEX+ release 1.0 (dansk)
└─⟦223239689⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦252f54a75⟧ Bits:30004169/disk1.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦252f54a75⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦6279acb2c⟧ Bits:30004169/disk8.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦6279acb2c⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦657bff2be⟧ Bits:30004160/disk1.imd SW95860 UNIPLEX+ release 1.0 (dansk)
└─⟦657bff2be⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦99a304564⟧ Bits:30004169/disk5.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦99a304564⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦bee8f15db⟧ Bits:30004169/disk2.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦bee8f15db⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦c93a30372⟧ Bits:30004169/disk3.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦c93a30372⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦dadaf6851⟧ Bits:30004169/disk6.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦dadaf6851⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
└─⟦e032397d0⟧ Bits:30004169/disk4.imd Uniplex II+ V.6 release 1.0 (dansk)
└─⟦e032397d0⟧ UNIX Filesystem
└─⟦this⟧ »install/UNINSTALL«
#
# Copyrighted as an unpublished work.
# (c) Copyright 1987 INTERACTIVE Systems Corporation
# All rights reserved.
#
# RESTRICTED RIGHTS
#
# These programs are supplied under a license. They may be used,
# disclosed, and/or copied only as permitted under such license
# agreement. Any copy must contain the above copyright notice and
# this restricted rights notice. Use, copying, and/or disclosure
# of the programs is strictly prohibited unless otherwise provided
# in the license agreement.
#
#ident "@(#)UNINSTALL.sh 1.1 - 87/08/14"
#
# Get the packages on this diskette
#
INSPATH=/install
cwd=`pwd`
cd $INSPATH
set `ls -d ??`
cd $cwd
nbrpkgs=$#
if [ "$nbrpkgs" -eq "1" ]
then
pkgs=$1
else
pkgs="$*"
fi
for pkg in $pkgs
do
PKGNAME=`cut -f1 -d'-' /install/$pkg/new/usr/options/$pkg.name`
FREL=`cut -f2 -d'-' /install/$pkg/new/usr/options/$pkg.name`
if [ -s /usr/options/$pkg.name ]
then
HREL=`cut -f2 -d'-' /usr/options/$pkg.name`
else
HREL=$FREL
fi
if [ "$FREL" != "$HREL" ]
then
echo "\nThe Version of $PKGNAME on the hard disk"
echo "is $HREL, which is different than the"
echo "Version on this floppy ($FREL)"
echo "The wrong files may be removed."
fi
echo Remove the ${PKGNAME:-$pkg} package? "(y): \c"
read resp
[ "$resp" = "n" -o "$resp" = "N" ] && continue
#
# Remove linked files and invoke unsetup file
#
[ -f /install/$pkg/install/unlink ] && /bin/sh /install/$pkg/install/unlink
[ -f /install/$pkg/install/unsetup ] && /bin/sh /install/$pkg/install/unsetup
#
# Remove the files found in the Rlist file from the hard disk.
#
echo "The following files are being removed:"
for i in `cat /install/$pkg/install/Rlist.$pkg`
do
echo $i
rm -fr $i
done
echo "The ${PKGNAME} has been removed."
done