home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / clk251.zip / CLKTEST.BAT < prev    next >
DOS Batch File  |  1992-05-01  |  785b  |  41 lines

  1. echo off
  2. cls
  3. rem These are some random clock options.  (Requires file RAND.EXE --
  4. rem also part of STEENBURGH's STUFF)
  5. rand 7
  6. if errorlevel 7 goto SEVEN
  7. if errorlevel 6 goto SIX
  8. if errorlevel 5 goto FIVE
  9. if errorlevel 4 goto FOUR
  10. if errorlevel 3 goto THREE
  11. if errorlevel 2 goto TWO
  12. :ONE
  13. rem "Standard" clock display -- no options
  14. CLK 
  15. goto end
  16. :TWO
  17. rem Military time
  18. CLK /T
  19. goto end
  20. :THREE
  21. rem Centered output
  22. CLK /D /C
  23. goto end
  24. :FOUR
  25. rem Color output
  26. CLK /T /W 79
  27. goto end
  28. :FIVE
  29. rem Positioned at specific screen location
  30. CLK /R20 /C "Week of the year: %%U.  Day of the year: %%j." 159
  31. goto end
  32. :SIX
  33. rem A custom format
  34. CLK "The time is now %%X.  Today is %%A."
  35. goto end
  36. :SEVEN
  37. rem Another custom format
  38. CLK "Today is %%A, %%B %%d, %%Y."
  39. :end
  40.  
  41.