home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / g / getquo30.zip / GETQUOTE.BAT < prev    next >
DOS Batch File  |  1992-06-18  |  778b  |  25 lines

  1. REM    This BATCH file assumes D: drive is a RAMDISK or other
  2. REM    memory virtual drive, you have PKWARE's PKZIP and PKUNZIP
  3. REM    in a directory defined by your PATH, and you are using
  4. REM    PROGRAM CTL for redirection of your disks.  Data is saved
  5. REM    in a subdirectory in both B: and D: because there are 
  6. REM    more than 112 issues which would be above the top level 
  7. REM    file limit.
  8. REM 
  9. D:
  10. md \DATA
  11. REM    Copy the archived files to the working drive.
  12. copy B:\ARCHIVE.ZIP D:\DATA\*.*
  13. cd \DATA
  14. PKUNZIP ARCHIVE.ZIP
  15. C:
  16. cd\AUTOSIG
  17. REM    Make the .SCR script.
  18. call MAKE_SCR
  19. REM    Run the download routine.
  20. call ATOSTART
  21. REM    Resave the updated file to the ARCHIVE disk.
  22. D:
  23. PKZIP -u ARCHIVE.ZIP *.
  24. copy D:\DATA\ARCHIVE.ZIP B:\ARCHIVE.ZIP
  25.