home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / add2 / sd62.zip / SDB.BAT < prev    next >
DOS Batch File  |  1989-06-02  |  1KB  |  22 lines

  1. echo off
  2. if not "%1"=="" goto ok
  3. echo ╔════════════════════════════════════════════════════════════════╗
  4. echo ║ Sorted Directory Utility Batch File to Browse Command Output   ║
  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 ║ and to then browse the generated output.  You must first edit  ║
  9. echo ║ the file to select the desired program name (default is LIST). ║
  10. echo ║ You may then run SDB just as you would SD, but you will view   ║
  11. echo ║ the output using the facilities of the specified program.      ║
  12. echo ║                                                                ║
  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 %1%2%3%4%5%6%7%8%9 >sorted.dir
  19. list sorted.dir
  20. del sorted.dir
  21. :end
  22.