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
Index: T u

⟦b3fa73242⟧ TextFile

    Length: 559 (0x22f)
    Types: TextFile
    Names: »usr/admin/menu/softwaremgmt/listpkg «

Derivation

└─⟦3d8f416b2⟧ Bits:30004042/core2.imd SW95705I 386/ix Multi-user Release 1.2
    └─⟦this⟧ »usr/admin/menu/softwaremgmt/listpkg « 

TextFile

#ident	"@(#)sadmin:admin/menu/softwaremgmt/listpkg	2.4"
#menu# list packages already installed
#help#
#help#	This subcommand shows you a list of currently installed optional
#help#	software packages.

unset c
if [ -d /usr/options ]
then
	cd /usr/options
	c=`ls *.name 2>/dev/null  |  sed 's/\.name$//'`
	if [ -n "${c}" ]
	then
		echo '\n\tThe following software packages have been installed:'
		for i in ${c}
		do
			echo "${i}\\c"
			sed 's/^/	/' ${i}.name
		done
	fi
fi
if [ -z "${c}" ]
then
	echo '\n\tNo software packages have been installed.'
fi
echo ''