home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
System
/
BoingBag1
/
Contributions
/
Workbench
/
RexxArpLib3p6
/
rexx
/
Dofor.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1989-02-24
|
352b
|
29 lines
/** dofor.rexx
*
* This function does 'oper' for all 'fn'.
*
**/
parse arg fn oper
oper = strip(oper)
if fn = "" then do
say "Usage: dofor <wildcards> <operation>"
exit
end
call filelist(fn, files, F)
if files.0 = 0 then do
say "No files found"
exit
end
do i = 1 to files.0
if files.i = "" then leave
oper' 'files.i
end
exit