home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games 1996 October / Amiga_Games_Extra_CD_10-96.bin / rexx / hip_usercopyfile.rexx < prev    next >
OS/2 REXX Batch file  |  1996-03-08  |  301b  |  21 lines

  1. /* HippoPlayer - Copy file
  2.  
  3. Copy the selected module to a dir.
  4.  
  5. This script can be easily modified to do different things, like moving and
  6. deleting.
  7.  
  8. */
  9.  
  10. options results
  11.  
  12. address 'HIPPOPLAYER'
  13.  
  14. get cnam
  15. CNAM = result
  16.  
  17. /* Execute a DOS command copy here. */
  18.  
  19. ADDRESS COMMAND 'copy "'cnam'" dh1:temp/'
  20.  
  21.