home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / MAKEC.CMD < prev    next >
Encoding:
Text File  |  1993-11-16  |  431 b   |  20 lines

  1. /*  rexx program to make an object on the desktop */
  2.  
  3. Parse Arg Data
  4.  
  5. /* first argument is the CD drive */
  6. cddr=Word(Data,1)
  7.  
  8. /* second argument is the destination directory */
  9. destdir=Word(Data,2)
  10.  
  11. /* third argument is the name of the audio file */
  12. audfile=Word(Data,3)
  13.  
  14. destfile=destdir'\'audfile
  15. srcfile=cddr'\llhome\audiodd\'audfile
  16.  
  17. address cmd 'copy 'srcfile destfile''
  18. /*   copy srcfile destfile  */
  19. exit
  20.