home *** CD-ROM | disk | FTP | other *** search
- /*
- $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 = 'AACD14:'
- 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
-
-