#
#ident	"@(#)displaypkg	3.1  (Prime) 1/25/89"
#
# PURPOSE: List installed software
# ---------------------------------------------------------------------

if [ -d /usr/options ]
then
	cd /usr/options
	list=`ls *.name 2>/dev/null`
	if [ -n "$list" ]
	then
		echo "\n\tThe following software packages have been installed:\n"
		cat ${list} | pg
		exit 0
	fi
fi
echo "There are currently no software applications installed."
