home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 1
/
amigaformatcd01.iso
/
pd
/
music
/
utilities
/
hippoplayer
/
arexx
/
hip_delfile2.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-04-30
|
459b
|
27 lines
/* HippoPlayer - del file
**
** This script parses the filename of the played module and then
** deletes it from the list.
**
** Written by Marcel Doering [DonDoringo@GURU.rhein-main.de]
*/
options results
address 'HIPPOPLAYER'
get cnam
CNAM = result
ADDLIB('rexxreqtools.library',0,-30,0)
IF ~EXISTS(cnam) then do
nf=rtezrequest('Couldn`t find 'cnam' !'||'0a'x||'Aborting...','Okay','HiP_copy.rexx',)
exit
end
DEL
address command 'delete 'cnam''
EXIT