home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / telecomm / bbs / xareafix.lha / XAreaFix / scripts / HatchDir next >
Encoding:
Text File  |  1994-03-06  |  894 b   |  26 lines

  1. ;$VER: HatchDir 1.0 (06.03.94)
  2. ;****************************************************
  3. ;*                                                  *
  4. ;* Xenolink 1.90 HatchDir script                    *
  5. ;*                                                  *
  6. ;* © 1994, XEcho Development, by Bart Schraa        *
  7. ;*                                                  *
  8. ;****************************************************
  9. ; HatchDir Dir/A,TagName/A,Date/A
  10. ;
  11. ; Hatches a whole directory at once script, but only files after the
  12. ; supplied date.
  13. ;
  14. .key Dir/a,TagName/a,date/a
  15. .bra {
  16. .ket }
  17. ; output list to a temporary file
  18. list {Dir} files lformat "XAreaFix HATCH t={TagName} f=%N p=%P s=7 d=%C" quick since {date} >t:hatch.script
  19. ;
  20. ; execute the script generated above
  21. if exists t:hatch.script
  22.     execute t:hatch.script
  23.     delete  t:hatch.script
  24. endif
  25. ;***************************************************
  26.