home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
ui_utils
/
toolman.lzh
/
ToolManager
/
Scripts
/
PlaySample.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1991-12-31
|
1KB
|
26 lines
/*********************************************************/
/* */
/* rexx:PlaySample.rexx V1.0 */
/* */
/* ARexx script for UPD sound daemon */
/* */
/* © 1991 Stefan Becker */
/* */
/* ToolManager configuration file entry for this script: */
/* */
/* CLI: */
/* Alias = Play Sample */
/* RealName = rx PlaySample */
/* # */
/* */
/*********************************************************/
/* Parse command line */
PARSE ARG cmdline
/* Send message to UPD's ARexx port */
ADDRESS PLAY 'file ' cmdline
/* Exit script */
RETURN 0