home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / dirutl / sd62.arc / SDD.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-06-02  |  1.2 KB  |  25 lines

  1. echo off
  2. if not "%1"=="" goto ok
  3. echo ╔════════════════════════════════════════════════════════════════╗
  4. echo ║ Sorted Directory Utility Batch File for Multiple Drives        ║
  5. echo ║ Copyright (C) 1989 By John F. Stetson - All Rights Reserved    ║
  6. echo ║                                                                ║
  7. echo ║ This batch file (SDD.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 SDD 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 ║                                                                ║
  14. echo ║ Please refer to the SD.DOC file for additional information.    ║
  15. echo ║ Press the ESCAPE key to terminate the batch file at any time.  ║
  16. echo ╚════════════════════════════════════════════════════════════════╝
  17. goto end
  18. :ok
  19. sd c:%1%2%3%4%5%6%7%8%9/$
  20. if errorlevel 2 goto end
  21. sd d:%1%2%3%4%5%6%7%8%9/$
  22. if errorlevel 2 goto end
  23. sd e:%1%2%3%4%5%6%7%8%9/$$
  24. :end
  25.