home *** CD-ROM | disk | FTP | other *** search
- /*
- ** This script shows how to obtain the list of ARexx commands.
- */
-
- options results
- address 'OPTYCDPLAYER'
-
- /* read the list into a temporary file */
- 'help t:_tmp'
-
- /* type the file to stdout */
- address command "type t:_tmp >con:////Rayvery/CLOSE/WAIT"
-
- /* delete the temporary file */
- address command "delete >nil: t:_tmp"
-