home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / sgml / unix / rexxsgml / rs.bat < prev    next >
Encoding:
DOS Batch File  |  1991-07-03  |  448 b   |  17 lines

  1. ECHO off
  2. Rem *** RS.BAT: Establishes Personal REXX environment and invokes REXXSGML
  3. Rem             and the RSDEMO program
  4.  
  5. Rem *** Check for required argument to RSDEMO.REX
  6. IF %1.==. GOTO usage
  7. Rem *** Load the REXX Interrupt Manager
  8. RXINTMGR
  9. Rem *** Make the REXX Interpreter resident
  10. Rem *** (It will not load if already resident -- smart program!)
  11. REXX /R
  12. REXXSGML rsdemo.rex %1
  13. GOTO done
  14. :usage
  15. ECHO Usage:  RS SGMLfile
  16. :done
  17.