#!/bin/sh ################################################################ # mwhelp.cmd (c) Kalimetrix 2014 # @(#) $Id: hh.cmd,v 1.1 2003/09/30 12:59:54 frbrhu Exp $ # # regedit execution ################################################################ # #------------------------------------------------------------ # environment variables used in MainWin product #------------------------------------------------------------ # if [ ".$MWHOME" = . ] then echo "The MWHOME environment variable is missing" exit 1 fi # #------------------- # running the tool #------------------- # if [ "$#" = "0" ] then exec ${MWHOME}/bin-${MWOS}_optimized/hh else exec ${MWHOME}/bin-${MWOS}_optimized/hh "$@" fi