home *** CD-ROM | disk | FTP | other *** search
- /* rexx program to make an object on the desktop */
-
- Parse Arg Data
-
- /* first argument is the CD drive */
- cddr=Word(Data,1)
-
- /* second argument is the destination directory */
- destdir=Word(Data,2)
-
- /* third argument is the name of the audio file */
- audfile=Word(Data,3)
-
- destfile=destdir'\'audfile
- srcfile=cddr'\llhome\audiodd\'audfile
-
- address cmd 'copy 'srcfile destfile''
- /* copy srcfile destfile */
- exit
-