echo off
if not "%1"=="" goto ok
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Sorted Directory Utility Batch File for Multiple Drives (SDB)  º
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 º for multiple disk drives automatically.  You must first edit   º
echo º the file to select the drive letters you wish to be processed. º
echo º You may then run SDB just as you would SD, but for multiple    º
echo º disk drives.  However, there are certain restrictions.  You    º
echo º must not specify a specific drive letter on the command line.  º
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 c:%1%2%3%4%5%6%7%8%9/$
if errorlevel 2 goto end
sd d:%1%2%3%4%5%6%7%8%9/$
if errorlevel 2 goto end
sd e:%1%2%3%4%5%6%7%8%9
rem omit the /$ for the last drive
:end
