home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / fcron.zip / FCRON.TAB < prev    next >
Text File  |  1994-06-05  |  973b  |  26 lines

  1. # FCron.Tab -- For use with FCron.Cmd for OS/2 Version 1.0
  2. #
  3. # Format:
  4. # * * * * * CMD ARGs ...
  5. # | | | | | |
  6. # | | | | | Command to Execute
  7. # | | | | Day of Week (Mon,Tue,Wed,Thu,Fri,Sat,Sun)
  8. # | | | Month (Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec)
  9. # | | Day of Month (1-31)
  10. # | Hour (0-23)
  11. # Minute (0-59)
  12. #
  13. # (Any line starting with a hash-mark (#) is a comment and is ignored by FCron)
  14. #
  15. # FCron (Free Cron) Utility for OS/2 is Free Software.  Feel free to distribute
  16. # it as you like.  This FCron.Tab should reside in the same directory as the
  17. # Rexx program FCron.Cmd.
  18. # Originally version 1.0 written 21 May 1995 by John J. Moss of Lakewood, CA
  19. # Hey--If you make any improvements why not send me a copy?  moss@excellon.com
  20. # Examples:
  21. # This command executes at the top of every hour on new year's day...
  22. 0 * 1 Jan * echo Happy New Year!!!
  23. # This next command will say hello every 15 minutes...
  24. 0,15,30,45 * * * * * start hello.cmd
  25.  
  26.