home *** CD-ROM | disk | FTP | other *** search
- ;$VER: HatchDir 1.0 (06.03.94)
- ;****************************************************
- ;* *
- ;* Xenolink 1.90 HatchDir script *
- ;* *
- ;* © 1994, XEcho Development, by Bart Schraa *
- ;* *
- ;****************************************************
- ; HatchDir Dir/A,TagName/A,Date/A
- ;
- ; Hatches a whole directory at once script, but only files after the
- ; supplied date.
- ;
- .key Dir/a,TagName/a,date/a
- .bra {
- .ket }
- ; output list to a temporary file
- list {Dir} files lformat "XAreaFix HATCH t={TagName} f=%N p=%P s=7 d=%C" quick since {date} >t:hatch.script
- ;
- ; execute the script generated above
- if exists t:hatch.script
- execute t:hatch.script
- delete t:hatch.script
- endif
- ;***************************************************
-