home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
164.lha
/
ARexx
/
Example_ARexx
/
join.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1988-04-28
|
315 b
|
15 lines
/* join -- a 'front end' for join. Fixes a problem with join. */
parse arg x
temp = 'arexxtempfile'
do i=1 to (words(x)-1)
if word(x,i) = word(x,words(x)) then do
oops = word(x,words(x))
x = delword(x,words(x)) || temp
'c:join' x
'copy ' temp ' ' oops
'del' temp
exit
end
end
'c:join' x