home *** CD-ROM | disk | FTP | other *** search
- echo off
- if not "%1"=="" goto ok
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ Sorted Directory Utility Batch File to Browse Command Output ║
- echo ║ Copyright (C) 1989 By John F. Stetson - All Rights Reserved ║
- echo ║ ║
- echo ║ This batch file (SDB.BAT) allows you to execute the SD program ║
- echo ║ and to then browse the generated output. You must first edit ║
- echo ║ the file to select the desired program name (default is LIST). ║
- echo ║ You may then run SDB just as you would SD, but you will view ║
- echo ║ the output using the facilities of the specified program. ║
- echo ║ ║
- echo ║ Please refer to the SD.DOC file for additional information. ║
- echo ║ Press the ESCAPE key to terminate the batch file at any time. ║
- echo ╚════════════════════════════════════════════════════════════════╝
- goto end
- :ok
- sd %1%2%3%4%5%6%7%8%9 >sorted.dir
- list sorted.dir
- del sorted.dir
- :end