#!/bin/sh
# @(#) $RCSfile$: $Revision: #15 $, $Date: 2006/06/26 $ 
# @(#) Copyright (c), 1987, 2006 Insightful Corp.  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
