home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 12
/
AACD12.ISO
/
CDTools
/
S
/
ExtractCDID.awebrx
< prev
next >
Wrap
Text File
|
2000-07-20
|
496b
|
21 lines
/*
$VER: ExtractCDID.awebrx 1.0 (2.9.99) (c) Neil Bothwick, Wirenet
*/
options results
call addlib('rexxsupport.library',0,-30,0)
call addlib('rexxdossupport.library',0,-30,0)
options failat 21
ExtractPath = 'RAM:'
CDName = 'AACD12:'
Archive = CDName'AACD/CDROM/CDIDs/CDIDs.lha'
parse arg ID
address command 'LhA -I -q e' Archive 'Disks/'ID ExtractPath
if RC = 0 then msg = ID' is now in RAM:'
else msg = 'An error occurred extracting 'ID
'request title "Amiga Active CD" "'msg'" "OK"'
exit