home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d9xx
/
d929
/
megad.lha
/
MegaD
/
rexx
/
makeLikeFiles.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-07
|
539b
|
20 lines
/* simply create like files in T: directory to test RenameOther.rexx */
/* if run from MegaD change address to REXX to prevent return values
from being used as ARexx commands to MegaD
*/
ADDRESS REXX
name = 'T:likeFile'
number = 1
do 20
filename = name || RIGHT(number,2,'0')
SAY filename
OPEN('file',filename,'w');
WRITELN('file',number)
CLOSE('file')
/* un-comment if you want to test with a phony .info file for each file */
/* ADDRESS COMMAND COPY 'sys:system/shell.info' to filename || '.info' */
number = number + 1
end