#!/bin/sh
#    UnpackKits kit...
# This expects a bunch of shar kits, possibly compressed, and makes
# a directory for them.  It then unpacks them into the directory.

for kit
do	echo Kit: $kit
	if [ -d "$kit" ];then Rm $kit ;fi
	mkdir $kit
	mv $kit'.sh'* $kit
	cd $kit
	uncompress *
	Unshar *
	cd ..
	if [ -f .env ];then Lc .env $kit;fi
done
