home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!mcsun!ub4b!news.cs.kuleuven.ac.be!blekul11!frmop11!awiwuw11!rony
- Organization: Wirtschaftsuniversitaet Wien, Vienna, Austria
- Date: Tuesday, 19 Jan 1993 15:35:08 CET
- From: FLATSCHER Rony <RONY@awiwuw11.wu-wien.ac.at>
- Message-ID: <93019.153508RONY@awiwuw11.wu-wien.ac.at>
- Newsgroups: comp.os.os2.programmer
- Subject: Re: How do I call batch file from REXX?
- References: <1993Jan16.012653.21787@leland.Stanford.EDU>
- Lines: 14
-
- Ken:
-
- CALLing a REXX-procedure from within REXX is straightforward:
-
- CALL some_rexx_proc
-
- CALLing a non-REXX-procedure from within REXX should work as follows:
-
- 'CALL some_non_rexx_proc' /* note the apostrophes */
-
- In the latter case the string is presented to CMD.EXE which itself
- should call the appropriate procedure.
-
- ---rony
-