home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 29 Fixes_o / 29-Fixes_o.zip / US8087.CMD < prev    next >
OS/2 REXX Batch file  |  1996-03-18  |  754b  |  41 lines

  1. @ECHO OFF
  2. if %1. == . goto help
  3. echo Please have 5 blank formatted 3.5" 1.44M diskettes ready.
  4.  
  5. echo Insert Disk 1 into %1
  6. pause
  7. call pkunzip -d US87_1.zip %1
  8. label %1VOLUME1
  9.  
  10. echo Insert Disk 2 into %1
  11. pause
  12. call pkunzip -d US87_2.zip %1
  13. label %1VOLUME2
  14.  
  15. echo Insert Disk 3 into %1
  16. pause
  17. call pkunzip -d US87_3.zip %1
  18. label %1VOLUME3
  19.  
  20. echo Insert Disk 4 into %1
  21. pause
  22. call pkunzip -d US87_4.zip %1
  23. label %1VOLUME4
  24.  
  25. echo Insert Disk 5 into %1
  26. pause
  27. call pkunzip -d US87_5.zip %1
  28. label %1VOLUME5
  29.  
  30. echo All Done!
  31. goto end
  32.  
  33. :help
  34.  
  35. echo Command Syntax: MAKEDSKS (drive letter) where (drive letter) is the
  36. echo                 letter of the 3.5" 1.44M diskette drive to use.
  37. echo                 eg. MAKEDSKS a:
  38. :end
  39.  
  40.  
  41.