home *** CD-ROM | disk | FTP | other *** search
- /* rh.pass2.rexx, (c) 1993 by Gerald Malitz <gm@germal.escape.de> */
- /* rh.pass2.rexx, chngs (c) 1993 by Kai 'wusel' Siering <wusel@hactar.hanse.de> */
-
- do forever
- parse pull exp '09'x msgid '09'x files
- if eof(stdin) then leave
- /* If article has been expired (no `files'), don't append a TAB as
- * that may confuse expire
- */
- if(files=="")
- then say msgid ||'09'x|| exp
- else say msgid ||'09'x|| exp ||'09'x|| files
- end
-