#!/bin/sh

# @(#)VERSION version 3.12 created 1/14/93
# @(#)Copyright (c), 1987, 1992 StatSci, Inc.  All rights reserved.
# cat out Version if it exists - otherwise cat VERSION

if [ -r $SHOME/Version ]
then
	cat $SHOME/Version
elif [ -r $SHOME/VERSION ]
then
	cat $SHOME/VERSION
else
	echo "Error: Unable to find a version file."
fi
