home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / programme / Opty / Arexx / Help.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1998-10-06  |  326 b   |  16 lines

  1. /*
  2. ** This script shows how to obtain the list of ARexx commands.
  3. */
  4.  
  5. options results
  6. address 'OPTYCDPLAYER'
  7.  
  8. /* read the list into a temporary file */
  9. 'help t:_tmp'
  10.  
  11. /* type the file to stdout */
  12. address command "type t:_tmp >con:////Rayvery/CLOSE/WAIT"
  13.  
  14. /* delete the temporary file */
  15. address command "delete >nil: t:_tmp"
  16.