#!/bin/sh

# whats it all about. Well the ziatech is running flat out, so loading
# a new ucd screen will take ages. so this script file copies the ucd to
# the local /ram/ dir, and then executes the file from there, maintaining 
# the local control system path. Clever eh?

LOCALPATH=/ram/
UCDFILE=ucd
UCDEXE=ucd.exe

test -f $LOCALPATH$UCDFILE
if [ $? -ne 0 ]
then
	echo copying $UCDFILE to local $LOCALPATH directory
	cp $UCDEXE $LOCALPATH$UCDFILE
fi
$LOCALPATH$UCDFILE $@ &
exit

