home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / clipper / xdot2.zip / INSTALL.BAT next >
DOS Batch File  |  1993-07-26  |  1KB  |  64 lines

  1. @echo off
  2. cls
  3. echo xDot Clipper Interpreter Installation
  4. if %1. == . goto usage
  5. if %2. == . goto usage
  6.  
  7. if not exist %1xdot2.exe goto badsrc
  8. if exist %2\nul goto next
  9. md %2
  10. if not exist %2\nul goto baddest
  11.  
  12. :next
  13. echo .
  14. echo Installing xDot Clipper Interpreter from %1 to %2...
  15. %1xdot2 %2
  16. if errorlevel==0 goto src
  17.  
  18. echo Error installing xDot Clipper Interpreter!
  19. goto outahere
  20.  
  21. :src
  22. if not exist %2\xdotsrc.exe goto done
  23. %2\xdotsrc %2 /d
  24. del %2\xdotsrc.exe
  25. if errorlevel==0 goto done
  26.  
  27. echo Error installing xDot Clipper Interpreter!
  28. goto outahere
  29.  
  30. :badsrc
  31. echo Bad source drive! (Where are you running this from?!?)
  32. goto usage
  33.  
  34. :baddest
  35. echo Bad target directory!
  36. goto usage
  37.  
  38. :usage
  39. echo  
  40. echo Usage:
  41. echo        {source drive}:INSTALL {source drive}: {target directory}
  42. echo  
  43. echo where
  44. echo        {source drive}     = Drive containing xDot diskette.
  45. echo        {target directory} = Directory on current drive where xDot
  46. echo                             is to be installed.  If the directory does
  47. echo                             not exist it will be created.
  48. echo  
  49. echo EXAMPLE:   A:INSTALL A: C:\XDOT
  50. echo  
  51. echo        This will install xDot from the diskette in drive A: to the
  52. echo        XDOT directory on drive C:.
  53. goto outahere
  54.  
  55. :done
  56.  
  57. echo Done!
  58. cls
  59. echo xDot Clipper Interpreter Installation Complete
  60. echo Type "XD" from the target directory to begin.
  61. echo.
  62.  
  63. :outahere
  64.