#!/bin/sh

# $Id: results,v 1.1 1994/11/26 00:40:59 lm Exp $

OS=`../scripts/os`
RESULTS=Results/$OS
BASE=../$RESULTS/`uname -n`
OUT=$BASE
EXT=0

if [ ! -d ../$RESULTS ]
then	mkdir -p ../$RESULTS
fi
while [ -f $OUT ]
do      EXT=`expr $EXT + 1`
	OUT=$BASE.$EXT
done
echo Results going to $OUT
cd ../bin/$OS && ../../scripts/lmbench 2>../$OUT
