home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / util2 / sd60.lzh / DEMO.BAT next >
DOS Batch File  |  1989-01-06  |  2KB  |  56 lines

  1. echo off
  2. cls
  3. echo ╔════════════════════════════════════════════════════════════════╗
  4. echo ║ Demonstration of the Sorted Directory Utility Program (SD)     ║
  5. echo ║ Copyright (C) 1989 By John F. Stetson - All Rights Reserved    ║
  6. echo ║                                                                ║
  7. echo ║ The following demonstration illustrates some of the features   ║
  8. echo ║ and capabilities of the SD utility program.  Please refer to   ║
  9. echo ║ the program documentation (SD.DOC) for additional information. ║
  10. echo ║ Press CTRL-BREAK to terminate the demonstration at any time.   ║
  11. echo ╚════════════════════════════════════════════════════════════════╝
  12. pause
  13. cls
  14. echo ╔════════════════════════════════════════════════════════════════╗
  15. echo ║                  System Information Summary                    ║
  16. echo ╚════════════════════════════════════════════════════════════════╝
  17. pause
  18. sd %1/$/i
  19. if errorlevel 2 goto end
  20. cls
  21. echo ╔════════════════════════════════════════════════════════════════╗
  22. echo ║                   Program Help Information                     ║
  23. echo ╚════════════════════════════════════════════════════════════════╝
  24. pause
  25. sd /$/?
  26. if errorlevel 2 goto end
  27. cls
  28. echo ╔════════════════════════════════════════════════════════════════╗
  29. echo ║                     Files Sorted By Size                       ║
  30. echo ╚════════════════════════════════════════════════════════════════╝
  31. pause
  32. sd %1/$/e/v/b/1
  33. if errorlevel 2 goto end
  34. cls
  35. echo ╔════════════════════════════════════════════════════════════════╗
  36. echo ║                 Files Sorted By Date And Time                  ║
  37. echo ╚════════════════════════════════════════════════════════════════╝
  38. pause
  39. sd %1/$/e/v/d/o
  40. if errorlevel 2 goto end
  41. cls
  42. echo ╔════════════════════════════════════════════════════════════════╗
  43. echo ║                   Files In All Directories                     ║
  44. echo ╚════════════════════════════════════════════════════════════════╝
  45. pause
  46. sd %1\/$/e/v/g/4
  47. if errorlevel 2 goto end
  48. cls
  49. echo ╔════════════════════════════════════════════════════════════════╗
  50. echo ║                    Files In All ARC Files                      ║
  51. echo ╚════════════════════════════════════════════════════════════════╝
  52. pause
  53. sd %1\/$/e/v/g/a/4
  54. :end
  55. echo Returning To The DOS Command Prompt . . .
  56.