home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / util2 / sd60.lzh / SDB.BAT < prev    next >
DOS Batch File  |  1989-01-06  |  1KB  |  25 lines

  1. echo off
  2. if not "%1"=="" goto ok
  3. echo ╔════════════════════════════════════════════════════════════════╗
  4. echo ║ Sorted Directory Utility Batch File for Multiple Drives (SDB)  ║
  5. echo ║ Copyright (C) 1989 By John F. Stetson - All Rights Reserved    ║
  6. echo ║                                                                ║
  7. echo ║ This batch file (SDB.BAT) allows you to execute the SD program ║
  8. echo ║ for multiple disk drives automatically.  You must first edit   ║
  9. echo ║ the file to select the drive letters you wish to be processed. ║
  10. echo ║ You may then run SDB just as you would SD, but for multiple    ║
  11. echo ║ disk drives.  However, there are certain restrictions.  You    ║
  12. echo ║ must not specify a specific drive letter on the command line.  ║
  13. echo ║ Please refer to the SD.DOC file for additional information.    ║
  14. echo ║ Press the ESCAPE key to terminate the batch file at any time.  ║
  15. echo ╚════════════════════════════════════════════════════════════════╝
  16. goto end
  17. :ok
  18. sd c:%1%2%3%4%5%6%7%8%9/$
  19. if errorlevel 2 goto end
  20. sd d:%1%2%3%4%5%6%7%8%9/$
  21. if errorlevel 2 goto end
  22. sd e:%1%2%3%4%5%6%7%8%9
  23. rem omit the /$ for the last drive
  24. :end
  25.