home *** CD-ROM | disk | FTP | other *** search
- #! /bin/csh -f
- #Tag 5669
-
- echo
- set DM_CMD = $0
- set DM_CMD_ROOT = `echo $DM_CMD:h`
-
- if (`echo $DM_CMD | cut -c1,1` == ".") then
- if (`echo $DM_CMD | cut -c2,2` == ".") then
- cd $DM_CMD_ROOT
- setenv ROOTDIRECTORY `pwd`
- else
- setenv ROOTDIRECTORY `pwd`
- endif
- else
- setenv ROOTDIRECTORY $DM_CMD_ROOT
- endif
-
- if (`echo $ROOTDIRECTORY | cut -c1,1 ` != "/") then
- setenv ROOTDIRECTORY \/$ROOTDIRECTORY
- endif
-
- cd $ROOTDIRECTORY
- setenv DMTOOLSDIR $ROOTDIRECTORY/.all
- echo DMTOOLSDIR=$DMTOOLSDIR
- $DMTOOLSDIR/bin/dmtools.csh
-
-