home *** CD-ROM | disk | FTP | other *** search
/ Boldly Go Collection / version40.iso / TS / 17A / DC10.ZIP / SHOWOFF.BAT < prev   
DOS Batch File  |  1991-05-30  |  862b  |  43 lines

  1. echo off
  2. dc
  3. echo .
  4. if errorlevel 7 goto error
  5. if errorlevel 6 goto 6
  6. if errorlevel 5 goto 5
  7. if errorlevel 4 goto 4
  8. if errorlevel 3 goto 3
  9. if errorlevel 2 goto 2
  10. if errorlevel 1 goto 1
  11. if errorlevel 0 goto 0
  12.  
  13. :0
  14. echo It is Sunday.  Do Sunday things.
  15. goto end
  16. :1
  17. echo It is Monday.  Even programmers get the blues.
  18. goto end
  19. :2
  20. echo Tuesday is not so bad, considering.
  21. goto end
  22. :3
  23. echo Hump day
  24. goto end
  25. :4
  26. echo Do backups today so you can leave early Friday.
  27. goto end
  28. :5
  29. echo TGIF
  30. goto end
  31. :6
  32. echo I suppose you should mow the lawn.
  33. goto end
  34. :error
  35. echo Oh, shucks!  You were never supposed to end up here.
  36. goto finished
  37. :end
  38. echo .
  39. echo So just put your instructions in place of the echo
  40. echo statements, including calls to other bats if you run 3.3 or above
  41. echo and you got the day of the week thing handled.
  42. :finished
  43.