DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦8ef77d3c3⟧ TextFile

    Length: 1764 (0x6e4)
    Types: TextFile
    Notes: UNIX file
    Names: »UNINSTALL«

Derivation

└─⟦0cfe73749⟧ Bits:30004154/config.imd SW95707I VP/ix MS-DOS emulator Rel. 1.1
└─⟦0cfe73749⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦0d89e62ea⟧ Bits:30004154/disk1.imd SW95707I VP/ix MS-DOS emulator Rel. 1.1
└─⟦0d89e62ea⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦22cab2c1b⟧ Bits:30004042/kcaddon.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦22cab2c1b⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦270712047⟧ Bits:30004042/spell.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦270712047⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦3be13f768⟧ Bits:30004042/swdev1.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦3be13f768⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦50c223e0a⟧ Bits:30004042/network1.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦50c223e0a⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦5fb5a153b⟧ Bits:30004042/hpdd.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦5fb5a153b⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦9432394ce⟧ Bits:30004042/fmhelp.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦9432394ce⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦a892c3799⟧ Bits:30004042/term1.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦a892c3799⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦aca99617e⟧ Bits:30004042/update3.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦aca99617e⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦b453d7f29⟧ Bits:30004042/rcutil.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦b453d7f29⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦dc276fb47⟧ Bits:30004042/kconfig1.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦dc276fb47⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 
└─⟦fdc69b24d⟧ Bits:30004152 SW95705I 386/ix Multi User Update 1
└─⟦fdc69b24d⟧ UNIX Filesystem
    └─⟦this⟧ »install/UNINSTALL« 

TextFile

#
#  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.2 - 88/07/18"
#
#       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/install/$pkg.name`
	FREL=`cut -f2 -d'-' /install/$pkg/install/$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