home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games 1996 October / Amiga_Games_Extra_CD_10-96.bin / rexx / hip_delfile2.rexx < prev    next >
OS/2 REXX Batch file  |  1996-01-14  |  459b  |  27 lines

  1. /* HippoPlayer - del file
  2. **
  3. ** This script parses the filename of the played module and then
  4. ** deletes it from the list.
  5. **
  6. ** Written by Marcel Doering [DonDoringo@GURU.rhein-main.de]
  7. */
  8.  
  9. options results
  10.  
  11. address 'HIPPOPLAYER'
  12.  
  13. get cnam
  14. CNAM = result
  15.  
  16. ADDLIB('rexxreqtools.library',0,-30,0)
  17. IF ~EXISTS(cnam) then do
  18. nf=rtezrequest('Couldn`t find 'cnam' !'||'0a'x||'Aborting...','Okay','HiP_copy.rexx',)
  19. exit
  20. end
  21.  
  22. DEL
  23.  
  24. address command 'delete 'cnam''
  25.  
  26. EXIT
  27.