Advertisement
Kelven

crontab.txt

Nov 13th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. # This is a test file for mIRCron
  2.  
  3. # Blank lines and comments are ignored.
  4. # Comments are lines that start with a #.
  5.  
  6. # There's a few examples here, to show just some of what mIRCron can do.
  7.  
  8. # (Table adapted from Wikipedia)
  9. #
  10. # +----------- minute (0 - 59)
  11. # | +--------- hour (0 - 23)
  12. # | | +------- day of month (1 - 31)
  13. # | | | +----- month (1 - 12)
  14. # | | | | +--- day of week (0 - 7) (Sunday=0 or 7)
  15. # | | | | |
  16. # * * * * * command to be executed
  17.  
  18.  
  19. # Using the special "reboot" schedule, display a message at startup
  20. @reboot echo -a mIRCron started!
  21.  
  22. # This example will run on all minutes divisible by 2.
  23. #*/2 * * * * echo -a Hello, on an even-numbered minute, from mIRCron!
  24.  
  25. # Here, the "hourly" schedule.
  26. #@hourly echo -a Top of the hour!
  27.  
  28. # Note how smart mIRCron is. It can even accomodate 55 minutes coming before 5
  29. # minutes! Also, note that the command is evaluated.
  30. #55-5 * * * * echo -a It's $+($asctime(hh:nn:ss),$chr(44)) which is near the top of the hour!
  31.  
  32. # A periodic timestamp, like iChat does
  33. #*/5 * * * * echo -a Now is $asctime(hh:nn)
  34.  
  35. # I use this to keep my nicks from dropping. It will run on all connections
  36. # where the server matches "*.webchat.org".
  37. #@weekly =*.webchat.org IdentifyToNicks
  38.  
  39. # For other networks, that have a network name, mIRCron can use the network
  40. # name just like server masks.
  41. #* * * * * @USLUG echo -a You're chatting on US LUG!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement