home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / add2 / sd62.zip / DEMO.BAT next >
DOS Batch File  |  1989-06-02  |  3KB  |  77 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/$%2
  19. if errorlevel 2 goto end
  20. cls
  21. echo ╔════════════════════════════════════════════════════════════════╗
  22. echo ║                   Program Help Information                     ║
  23. echo ╚════════════════════════════════════════════════════════════════╝
  24. pause
  25. sd /?/$%2
  26. if errorlevel 2 goto end
  27. cls
  28. echo ╔════════════════════════════════════════════════════════════════╗
  29. echo ║              Files Sorted By Size In 1 Column Mode             ║
  30. echo ╚════════════════════════════════════════════════════════════════╝
  31. pause
  32. sd %1/e/v/b/1/$%2
  33. if errorlevel 2 goto end
  34. cls
  35. echo ╔════════════════════════════════════════════════════════════════╗
  36. echo ║         Files Sorted By Date And Time In 2 Column Mode         ║
  37. echo ╚════════════════════════════════════════════════════════════════╝
  38. pause
  39. sd %1/e/v/d/o/2/$%2
  40. if errorlevel 2 goto end
  41. cls
  42. echo ╔════════════════════════════════════════════════════════════════╗
  43. echo ║              Files Sorted By Type In 6 Column Mode             ║
  44. echo ╚════════════════════════════════════════════════════════════════╝
  45. pause
  46. sd %1/e/v/x/6/$%2
  47. if errorlevel 2 goto end
  48. cls
  49. echo ╔════════════════════════════════════════════════════════════════╗
  50. echo ║                  Graphic Directory Tree Map                    ║
  51. echo ╚════════════════════════════════════════════════════════════════╝
  52. pause
  53. sd %1\/m/$%2
  54. if errorlevel 2 goto end
  55. cls
  56. echo ╔════════════════════════════════════════════════════════════════╗
  57. echo ║    Files In All Directories Sorted By Name In 4 Column Mode    ║
  58. echo ╚════════════════════════════════════════════════════════════════╝
  59. pause
  60. sd %1\/e/v/g/f/4/$%2
  61. if errorlevel 2 goto end
  62. cls
  63. echo ╔════════════════════════════════════════════════════════════════╗
  64. echo ║ Files In All ARC and ZIP Files Sorted By Name In 4 Column Mode ║
  65. echo ╚════════════════════════════════════════════════════════════════╝
  66. pause
  67. sd %1\/e/v/g/az/f/4/$%2
  68. if errorlevel 2 goto end
  69. cls
  70. echo ╔════════════════════════════════════════════════════════════════╗
  71. echo ║    Grand Totals Only For All Directories, ARC and ZIP Files    ║
  72. echo ╚════════════════════════════════════════════════════════════════╝
  73. pause
  74. sd %1\/e/v/gt/az+/$%2
  75. :end
  76. echo Returning To The DOS Command Prompt . . .
  77.