home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / os / os2 / programm / 7930 < prev    next >
Encoding:
Internet Message Format  |  1993-01-23  |  796 b 

  1. Path: sparky!uunet!mcsun!ub4b!news.cs.kuleuven.ac.be!blekul11!frmop11!awiwuw11!rony
  2. Organization: Wirtschaftsuniversitaet Wien, Vienna, Austria
  3. Date: Tuesday, 19 Jan 1993 15:35:08 CET
  4. From: FLATSCHER Rony <RONY@awiwuw11.wu-wien.ac.at>
  5. Message-ID: <93019.153508RONY@awiwuw11.wu-wien.ac.at>
  6. Newsgroups: comp.os.os2.programmer
  7. Subject: Re: How do I call batch file from REXX?
  8. References:  <1993Jan16.012653.21787@leland.Stanford.EDU>
  9. Lines: 14
  10.  
  11. Ken:
  12.  
  13. CALLing a REXX-procedure from within REXX is straightforward:
  14.  
  15.            CALL some_rexx_proc
  16.  
  17. CALLing a non-REXX-procedure from within REXX should work as follows:
  18.  
  19.            'CALL some_non_rexx_proc'   /* note the apostrophes */
  20.  
  21. In the latter case the string is presented to CMD.EXE which itself
  22. should call the appropriate procedure.
  23.  
  24. ---rony
  25.