home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
Pearls
/
text
/
FAQ
/
bonus
/
faq_reportall.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-08-16
|
369b
|
18 lines
/* ARexx-Skript für Meeting Pearls
Report der FAQ
$VER: faq_reportall.rexx 0.1 (14.08.95) ©1995 Khamsonh Marcel Khounlivong
*/
PARSE ARG srcdir
srcdir = Strip(Strip(srcdir),t,'/') || '/'
files = ShowDir(srcdir,f)
CALL AddLib('rexxsupport.library',5,-30)
DO i=1 FOR Words(files)
file = srcdir || Word(files,i)
CALL faq_report.rexx file
END