home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 12 / Silicon_Graphics_Developer_Magic_Soft_Dev_812-8101-012.iso / DM_tools
Encoding:
Text File  |  1995-11-09  |  547 b   |  28 lines

  1. #! /bin/csh -f
  2. #Tag 5669
  3.  
  4. echo
  5. set DM_CMD = $0
  6. set DM_CMD_ROOT = `echo $DM_CMD:h`
  7.  
  8. if (`echo $DM_CMD | cut -c1,1` == ".") then
  9.     if (`echo $DM_CMD | cut -c2,2` == ".") then
  10.         cd $DM_CMD_ROOT
  11.         setenv ROOTDIRECTORY `pwd`
  12.     else
  13.         setenv ROOTDIRECTORY `pwd`
  14.     endif
  15. else
  16.     setenv ROOTDIRECTORY $DM_CMD_ROOT
  17. endif
  18.  
  19. if (`echo $ROOTDIRECTORY | cut -c1,1 ` != "/") then
  20.     setenv ROOTDIRECTORY \/$ROOTDIRECTORY
  21. endif
  22.  
  23. cd $ROOTDIRECTORY
  24. setenv DMTOOLSDIR  $ROOTDIRECTORY/.all
  25. echo DMTOOLSDIR=$DMTOOLSDIR
  26. $DMTOOLSDIR/bin/dmtools.csh
  27.  
  28.