home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / utility / efs19.zip / EFS19.EXE / EFS.CTL next >
Text File  |  1993-08-21  |  2KB  |  54 lines

  1. ; EFS.CTL - An example Easy File Scheduler Control File.
  2. ;
  3. ; Easy File Scheduler Control File have the uses the following format :
  4. ;
  5. ; [identifier]    [program and their commandline parameters]
  6. ;
  7. ; The following indentifiers are accepted by Easy File Scheduler :
  8. ;
  9. ;   the number from 1 to 31 (this corresponds to the date of the month),
  10. ;   Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday,
  11. ;   EvenDays, OddDays, EvenDates, OddDates, EveryDay and EveryTime.
  12. ; Easy File Scheduler also accept a "NOT" in-front of an identifier.
  13. ; A NOT will execute the programs if today is NOT the days specified by
  14. ; the identifier.
  15. ;
  16. ; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv ;
  17.  
  18.   EveryTime       Scan c:\ /nomem /nopause
  19.   1               MSAV /s /l
  20.   Tuesday         NDD c: /q
  21.   EvenDays        Defrag c: /f /sn
  22.   OddDates        mirror
  23.  
  24. ; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ;
  25. ;
  26. ; Description of the scheduled programs in this control file.
  27. ;
  28. ; Easy File Scheduler will run SCAN EveryTime EFS.EXE is invoked.
  29. ; Then it will run MSAV once a day if that day is the 1st of the month.
  30. ; Then it will run NDD once on Tuesday.
  31. ; Then it will run DEFRAG once a day if that day is an even day,
  32. ;                  (eg: Tuesday, Thursday, Saturday or Sunday)
  33. ; Finally, it will run MIRROR once a day if that day have an odd date,
  34. ;                  (eg: 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, etc)
  35. ;
  36. ; Anything you can do in DOS, will work with Easy File Scheduler. You can 
  37. ; even runs batch files and do internal DOS commands as scheduled events. 
  38. ;   eg: Monday  echo Y | del c:\msdos\temp\*.*
  39. ; But setting anything in the DOS environment (eg: set path=c:\4dos) 
  40. ; is NOT supported.
  41. ;
  42. ; BBS System operators will find Easy File Scheduler useful for doing
  43. ; BBS maintenance work only on the specified days.
  44. ;   eg: Wednesday   echo Y | del c:\nodelist\*.*
  45. ; or
  46. ;       Friday      echo Y | del c:\files\badfiles\*.*
  47. ;
  48. ; With Easy File Scheduler, There is NO LIMITS to the number of things you 
  49. ; can do!
  50.  
  51. ; End of EFS.CTL
  52.