home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 1.ddi / CTREE.CMD < prev    next >
Encoding:
Text File  |  1989-04-18  |  1.3 KB  |  47 lines

  1. echo off
  2. if XX%1==XX goto usage
  3. if XX%2==XX goto usage
  4. if XX%3==XX goto usage
  5.  
  6. %1:
  7. if ERRORLEVEL 1 goto usage
  8. if NOT EXIST %2\*.* md %2
  9. cd %2
  10. if ERRORLEVEL 1 goto usage
  11. if NOT EXIST os2\*.* md os2
  12. if NOT ERRORLEVEL 1 goto d14
  13. echo Could not create OS2 subdirectory
  14. goto usage
  15. :d14
  16. if NOT EXIST os2lan\*.* md os2lan
  17. if NOT ERRORLEVEL 1 goto d15
  18. echo Could not create OS2LAN subdirectory
  19. goto usage
  20. :d15
  21. goto copy
  22.  
  23. :usage
  24. echo OS/2 program to install c-tree(R) File Handler source on hard disk.
  25. echo *****:
  26. echo usage: CTREE {HARD DRIVE} {c-tree DIRECTORY} {FLOPPY DRIVE}
  27. echo *****:
  28. echo        where {HARD DRIVE}       = C or D or E or ... (destination)
  29. echo        where {c-tree DIRECTORY} = Hard disk directory for c-tree
  30. echo        and where {FLOPPY DRIVE} = A or B or ... (source)
  31. echo        e.g.,    CTREE  C  ctree  a
  32. echo            CTREE  D  \ct    b
  33. echo *****
  34. echo The source is then installed as follows: CTREE switches to HARD DRIVE, and
  35. echo creates (if necessary) the c-tree directory (beginning at the DRIVE's
  36. echo current directory). Additionally, sub-directories are created for each of
  37. echo the system dependent modules (e.g., OS/2 and OS/2 Lan Manager).
  38. echo Then the code is copied from the floppies mounted on FLOPPY DRIVE to these
  39. echo c-tree directories.
  40.  
  41. goto done
  42.  
  43. :copy
  44. copy %3:\$$$$3 ct2.cmd
  45. ct2 %1 %3
  46. :done
  47.