#!/bin/sh

#
#	.mkrevus.sh -	Script acquires a list of files to be
#			processed from the current directory
#			and generate an index.html and even an
#			all-index.html file (there's a list of
#			core names to suppress in the .hide file
#			that won't be placed in the default
#			index file).
#		Author:	Jack C Lipton,  liptonsoup1951@yahoo.com
#


INFO=.sort
TMP=/tmp/mkrevusT.$$


FILES=`cat $INFO | awk '-F|' '{print $1}'`


#
#	Generate the review files...
#

for	CORENAME	in	$FILES
    do

	#	isolate name so we can check whether this should be displayed

	./.mkrevu.sh	$CORENAME

    done



#
#	Perform clean-up of volatile files
#

rm -f		$TMP

exit	0		# all done!