home *** CD-ROM | disk | FTP | other *** search
- address command "list >ram:noiconlist ~(#?.info) quick files nohead"
- 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
-