home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 164.lha / ARexx / Example_ARexx / man.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1988-04-28  |  156 b   |  6 lines

  1. /* man -- show manual page */
  2. parse arg x
  3.   x = 'docs:' || x || '.doc'
  4. if exists(x) then arun more x
  5. else say 'No manual entry for' substr(x,6,length(x)-9)
  6.