home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / mui-2.1.lha / MUI-2.1 / Rexx / WbMan.mrx < prev   
Encoding:
Text File  |  1993-11-19  |  314 b   |  23 lines

  1. /*
  2. ** This script shows how to obtain a list
  3. ** of an applications ARexx commands.
  4. */
  5.  
  6. options results
  7. address 'WBMAN'
  8.  
  9.  
  10. /* read the list into a temporary file */
  11.  
  12. 'help t:_tmp'
  13.  
  14.  
  15. /* type the file to stdout */
  16.  
  17. address command "type t:_tmp"
  18.  
  19.  
  20. /* delete the temporary file */
  21.  
  22. address command "delete >nil: t:_tmp"
  23.