#!/bin/sh
#
#     This shell script gets the install set (really, like install
#     selections.)
#
#     Change the location of this file.

if [ -f tmplist ]; then
	awk -f catlst.awk tmplist | sh | awk -f getcomp.awk > newtmplist
	rm tmplist; mv newtmplist tmplist
else
	cp initiallist tmplist
fi	
