home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 1
/
amigaformatcd01.iso
/
rexx
/
addicons.arexx
next >
Wrap
Text File
|
1996-04-30
|
322b
|
14 lines
address command "list >ram:noiconlist ~(#?.info) quick files"
address
if ~open("listfile", "ram:noiconlist", "read") then do
say "fatal error"
exit
end
do until eof("listfile")
this_line = READLN("listfile")
com_line = "copy ram:deficon "this_line".info"
address command com_line
end
say "done"
exit