ftp.nice.ch/pub/next/tools/performance/ByteBenchmark.NIHS.bs.tar.gz#/ByteBenchmark/pgms/index.sh

This is index.sh in view mode; [Download] [Up]

#!/bin/sh
##############################################################################
#  The BYTE UNIX Benchmarks - Release 3
#          Module: index.sh   SID: 3.5 5/15/91 19:30:24
#          
##############################################################################
# Bug reports, patches, comments, suggestions should be sent to:
#
#	Ben Smith or Tom Yager at BYTE Magazine
#	ben@bytepb.byte.com   tyager@byptepb.byte.com
#
##############################################################################
# generate an index from test log
# 
#############################################################################
#  Modification Log:
#        created 4/1/91 - Ben Smith
#
##############################################################################
BINDIR=${BINDIR-pgms}
BASE=${BASE-pgms/index.base}
TARGET=${TARGET-results/log}
TEMP="/tmp/$$.dat"
#
# BASELINE DATA
#
if [ $# -lt 1 ]
then
	echo "Data File for baseline: \c"
	read BASE
else
	BASE=$1
fi
# check for existance
if [ ! -r ${BASE} ]
then
	echo "Cannot open $BASE for reading"
	exit 1
fi
#
# RESULTS TARGET
#
if [ $# -lt 2 ]
then
	echo "Source File for target machine results: \c"
	read TARGET
else
	TARGET=$2
fi
# check for existance
if [ ! -r ${TARGET} ]
then
	echo "Cannot open $TARGET for reading"
	exit 1
fi
#
# make dat file for results

sort  ${TARGET}  >  ${TEMP}

#
# DESTINATION
#
if [ $# -eq 3 ]
then
	DEST=$3
	${BINDIR}/join.sh ${BASE} ${TEMP} >  ${DEST}
else
	${BINDIR}/join.sh ${BASE} ${TEMP}
fi

# cleanup
rm -f ${TEMP}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.