NetRexx

Version: 
4.06
Release date: 
Monday, 22 April, 1996

Categories:

License:

Interface:

NetRexx is a programming language derived from both Rexx and Java. It is a dialect of Rexx that retains the portability and efficiency of Java, while being as easy to learn and to use as Rexx.

Included are the language and programming manuals for NetRexx and also a quik reference guide in pdf format. Knowledge of Java and REXX languages is mandatory. Basics of REXX language can be found in the "Procedures Language/2 REXX User's Guide", included in the operative system, and in the REXX Reference Summary Handbook.

Note that latest version running on OS/2 is 3.04!

This software is distributed as compressed package. You have to download and manually install it; if prerequisites are required, you will have to manually install them too.

Manual installation

Program is distributed as ZIP package: download to temporary directory and unpack to destination folder. See below for download links.

Online documentation:

Following ones are the download links for manual installation:

NetRexx v. 4.06 (2/3/2024) Readme/What's new
# NetRexx 4.06 A [2 Mar 2024] ## Fixes - NetRexx-56 Variable interpolation in address statement (Marc Remes) - NetRexx-49 Interpreter fails in synchronised section (Marc Remes) - NetRexx-55 Unicode literal example fails to compile, interprets OK (Marc Remes) - NetRexx-54 Interpreter fails with module issue while looping over char array (Marc Remes) ## Documentation - new layout for the Pipelines railroad diagrams - old railroad diagrams and chapters about Structured Data and Threadpool are removed from NRL - NRL Available as printed book ("The NetRexx Language") ## Pipelines - a new SELECT stage is added by Jeff Hennick ## Examples - chaos fractal generator in examples/chaos illustrates how easy Swing components and other Java features are manipulated in NetRexx. And the spectacular imaginary images are free;
 www.netrexx.org/files/NetRexx-4.06-GA.zip
NetRexx v. 4.05 (10/5/2023) Readme/What's new
# NetRexx 4.05 GA [10 May 2023] ## Project - an ant build.xml (in examples) to build an Android .apk for the NetRexx translator (Jason Martin) - Reworked NetRexx Language Reference documentation - Reworked NetRexx Pipelines Guide and Reference documentation ## Language - a new option -deps to list dependencies - a new option -noimplicituses to avoid automatic addition of Classic Rexx compatible classes to 'uses' -see below - the package org.netrexx.address is now deprecated, because its work is better done by the ADDRESS statement - #! shebangs are now supported for systems that support them, such as Linux and macOS - and ignored by the translator (Marc Remes) - the launch script nrc now can be run with no CLASSPATH present (Marc Remes) - The Classic Rexx (and ooRexx, Regina) functions user() and directory() are added to aid scripting.(René Jansen) - #48 nrws.properties can now be .nrws.properties (though support for the filename without a dot is still there) - a Classic Rexx compatible random() function is added. ## Pipelines - org.netrexx.njpipes.pipes.runner now reads pipeline source from stdin when invoked without arguments (Marc Remes) - a new ALL stage (Jeff Hennick) - a new DELAY stage (Jeff Hennick) ## Fixes - #38: the ADDRESS environment for SYSTEM is now resolved at runtime, previously a class compiled on another platform could look for a shell that was not there (Marc Remes) - the sqlselect stage has an exception message protected against nullpointers from a failing JDBC driver - #33: fix interpreter handling constant properties - #35: Rexx date() now standard in all modes (scripting mode and standard mode) -noimplicituses option for breakage - adapted qtime.nrx example for #35 (René Jansen) - #40: detect unreachable code (Marc Remes) - #41 The Workspace for NetRexx (nrws) now tries to avoid leaving _WS_*.nrx files after ending (René Jansen) - #42 A settings.history=off property in nrws.properties can be used to avoid writing a nrws.history file (René Jansen) - when interpreting, wait for all threads to complete after main() returned. - better diagnostics on failed clgMain (compile-load-go) dynamic compiles, e.g. for pipes and their stage exits - an error in RexxTime which could lead to a recursive call has been solved - #43: Erroneous leading zero on Date() and Date('n') corrected, now following the language reference and standard - allow lowercase 'date()' functions - updated ADDRESSable bin/pipe shell script - lifted restriction on macOS where due to an Apple caused 'feature' the home directory was not scanned for packages on startup of the translator. The restriction is now limited to the $HOME/Library hidden system directory on macOS, NetRexx will not find classes in that location. - #47 a related issue (but for another part of the user home directory) is solved for windows
 www.netrexx.org/files/NetRexx-4.05-GA.zip
NetRexx v. 4.04 GA (12/9/2022) Readme/What's new
# NetRexx 4.04 GA [12 Sep 2022] ## Project - the NetRexx issue tracker has moved to [https://github.com/RexxLA/NetRexx/issues] - The RexxLA/NetRexx shadow repository will be maintained to be identical in contents to the SourceForge one ## Language - non-oo notation for scripting mode (René Vincent Jansen) enables (much more) Classic Rexx source compatible scripting - a new nr command for scripting purposes - releasenotes are in Markdown syntax (and have moved to the root of the development tree) - use of color in language processor messages enabled (but optional, opt-out for Linux and Mac, opt-in for windows) - a bugfix on an address statement ("variable $2 already defined") with interruptedexception - add the netrexx/lang/Sysutils class by Marc Remes - date('j') input format gave incorrect output and is fixed. This version 'century windows' around 75 for compatibility with z/VM CMS Rexx; in a coming release 2-digit years will be deprecated on date'j' input format. - TRACE INT (interactive trace) added by Marc Remes ## Workspace for NetRexx - you can now exit the NetRexx Workspace with an 'exit' - resolved an error in the startup timer of nrws; timer display is now default - the default now is to display the command timer instead of the window number - the default prompt changed to 'Ready;' (but both options can still be changed in an $HOME/nrws.properties file) - the pipelines processor is now loaded by default. ## Pipelines for NetRexx - a pipelines example that uses the ADDRESS WITH functionality in a NetRexx script - Stage locate can be abbreviate to locat, loc, lo and l ## Documentation - The Quickstart Guide has been corrected to make all examples pasteable from the PDF - eliminated all 'typographical' quotes and hyphens. - The Quickstart Guide now delivers some missing information on getting NetRexx to run. - The Programming Guide has been brought up to date with modern JVM versions, which means that some scripting examples have disappeared, as the supporting functionality has been removed by Oracle. - New documentation features will be in Markdown only (not visible to the user of the documents but opening up the production of document chapters to non-Latex users) - TODO error codes in Pipelines Reference - TODO debug levels in Pipelines Reference - The file `stages.html` is now included in the documentation directory - The file `methods.html` is now included in the documentation directory
 www.netrexx.org/files/NetRexx-4.04-GA.zip
NetRexx v. 4.03 GA (3/5/2022) Readme/What's new
NetRexx 4.03 GA [03 May 2022] - ADDRESS WITH implemented (Marc Remes) - a fix for NETREXX-24 (was 148): ITERATE without label is not inside LOOP construct message (Marc Remes) - a small fix for the MOD option (Jason Martin) - correct slightly erroneous DataIO2.nrx example from NrxRedBk (René Jansen) (Thank you Terry Fuller) - a fix for JavaFX usage with the JPMS (and any other imported module) (Marc Remes) (Thank you Terry Fuller) - a new sample how to address https by Ruurd J. Idenburg - A Classic Rexx inspired Stream I/O implementation (René V. Jansen) - A new example of how to use a Swing Gui by Ruurd J. Idenburg - Start of a new organisation of the examples directory by function - a 'scripting mode' application adds 'uses RexxDate, RexxStream' to the generated class definition - RxJrt now compiles under Java 8 and RxJrtApi.nrx under Java >=9 (Marc Remes) - The java2nrx tool has been upgraded to v1.05 - The distribution package now also contains java2nrx (previously onlyin source package) - in scripting mode, 'parse pull' can be used as an equivalent of 'parse ask'
 www.netrexx.org/files/NetRexx-4.03-GA.zip
NetRexx v. 4.03 BETA (1/4/2022) Readme/What's new
NetRexx 4.03 BETA [01 Apr 2022] - ADDRESS WITH implemented (Marc Remes) - a fix for NETREXX-24 (was 148): ITERATE without label is not inside LOOP construct message (Marc Remes) - a small fix for the MOD option (Jason Martin) - correct slightly erroneous DataIO2.nrx example from NrxRedBk (René Jansen) (Thank you Terry Fuller) - a fix for JavaFX usage with the JPMS (and any other imported module) (Marc Remes) (Thank you Terry Fuller) - a new sample how to address https by Ruurd J. Idenburg - A Classic Rexx inspired Stream I/O implementation (René V. Jansen) - A new example of how to use a Swing Gui by Ruurd J. Idenburg - Start of a new organisation of the examples directory by function - a 'scripting mode' application adds 'uses RexxDate, RexxStream' to the generated class definition - RxJrt now compiles under Java 8 and RxJrtApi.nrx under Java >=9 (Marc Remes) - The java2nrx tool has been upgraded to v1.05 - The distribution package now also contains java2nrx (previously only in source package)
 www.netrexx.org/files/NetRexx-4.03-BETA.zip
NetRexx v. 4.02 GA (24/1/2022) Readme/What's new
NetRexx 4.02 GA [Januari 24, 2022] - for building NetRexx 4.0.2, Java 8 is now the lowest supported version - tested and buildable from Java 8 up to and including Java 19ea - including a fix for building on Java >=18 - NetRexx option (no)annotate to turn off pass through annotations - NetRexxC.jar and NetRexxF.jar now contain the ANT task for NetRexx - The ANT task is modified for the new -annotations option - The ANT task is modified for the new -address option - ANT in the source code repository upgraded to 1.10 for building NetRexx - a new chapter in the Programming Guide documenting two ANT scenarios - new special word asknoecho to request console input without echo, e.g. for passwords - NetRexx option MOD for generation of tailored source representations (Jason Martin) - documentation additions and corrections (numerous) - the base font for all documents is now an open source version of Palatino (TeX Gyre Pagella , due to font copyright issues Pipeline additions, improvements: - fix for arguments on command stage - DIGEST stage (SHA1, SHA256, SHA512, MD2, MD5 and more). - a small CMS-compatibility improvement for stage LITERAL (Jeff Hennick) - a new pipr script that is guaranteed to work in a Docker container (Marc Remes)
 www.netrexx.org/files/NetRexx-4.02-GA.zip
NetRexx v. 4.01 GA (20/3/2021) Readme/What's new
NetRexx 4.01 GA [March 20th, 2021] - the first NetRexx release compatible with the JDK >=9 module system, thanks to Marc Remes - contains all 3.11 GA functionality - design goal is to be able to compile all existing NetRexx code - the NetRexx interpreter also has been modified and tested - finds all Java classes in the module system under JDK >=9 - retains compatibility with - and runs under - JDK8 - a new Eclipse java compiler is included, patched for NetRexx - Between stage: bug fix for numeric second argument - adds the ADDRESS [environment] statement compatible with Classic Rexx - adds the DATE and TIME functions compatible with Classic Rexx - a pipeline from a .njp file can now be run with the pipe runner - a pipeline (including portrait mode specifications) can be executed from a .nrx file with ADDRESS PIPE When testing this new release with current JDK levels, please take into account that a number of earlier deprecated classes indeed have been removed in later JDK releases. The translator not being able to find a class, specially in the javax packages, is not necessarily a bug in NetRexx. For example, starting with JDK 11, the whole of JEE has been removed. Every module that could be included, has been included with NetRexx 4.01 .
 www.netrexx.org/files/NetRexx-4.01-GA.zip
NetRexx v. 3.11 GA (23/12/2020) Readme/What's new
NetRexx 3.11 GA [December 23rd, 2020] - 3.10 is skipped as a release number, to avoid confusion with 3.01 - Diskr and diskw stages:enhanced detection of Windows-type path strings - diskr and diskw stages fixed for relative filepaths - COLLATE stage; with tests and documentation - cons stage: add PRefix & PRompt keywords - added USER to sqlselect.properties for some dbms - change stage: add TO, FROM, TOFROM optional keywords - command stage: add isWindows and cmd processing; better error message; documentation - Stages decode64 & encode64 - Stages q, qu, que, quer as aliases for query - Change stage: add FROM, TO, FROMTO, FOR, RESPECTCASE keywords - ChangeRegex stage add FROM and TO options - changeparse stage & abbreviations - display stage - htmlrow stage - htmlrows stage (all work on CMS/NetRexx Pipelines is by Jeff Hennick)
 www.netrexx.org/files/NetRexx-3.11-GA.zip
NetRexx v. 3.0.9 (1/10/2020) Readme/What's new
NetRexx 3.09 GA [October 1st, 2020] - fix for ANSI escapes/colors in nrws on Windows operating systems - bump version level of included JLine implementation - fix a compiler warning when live executing a pipeline including stage UNIQUE - enable multiline 'Portrait-mode' entering of pipeline definitions - add the 'source' option to the 'query' stage to bring in line with CMS (note that this is not documented in the CMS manuals, but behaves identical) - stage CONSOLE can now be abbreviated as in CMS - stage XLATE can now be used as TRANSLATE and its abbreviations as in CMS - add CASELESS to the abbrev stage to be CMS compliant (Jeff Hennick) - BUFFER, APPEND, TAKE and COMPARE stages and tests (Jeff Hennick) - documentation additions and improvements; added warning about Java 8 being the highest working version - experimental native executable versions of the compiler for X86_64, versions of macOS and Linux for use with Java versions 9-14 - Added DROP FIRST number BYTES (secondary); * (secondary); negative stage (Jeff Hennick) - BETWEEN stage hex and binary strings and tests (Jeff Hennick) - many SPECs CMS compliancy improvements (Jeff Hennick) - a new njp-model.el for emacs to correctly handle specs 1-* - AGGRC stage added - multithreading bug with multiple CONSOLE stages in a pipeline solved - JOIN stage improved for CMS Compatibility (add COUNT and TERMINATE) (Jeff Hennick) - DString bug solved (Jeff Hennick) - FROMLABEL stage added (Jeff Hennick) - FROMTARGET stage added (Jeff Hennick) - FANINANY NOSTRICT added (Jeff Hennick) - FANIN streams fixed (Jeff Hennick) - DEAL fixes (Jeff Hennick) - SPACE stage added - LOCATE fixed for null input (Jeff Hennick) - <, >, >> translation bug fixed, diskr, diskw and diska will now only be subsituted when first word in space specification - HOSTBYNAME stage (Colin K.) - PICKPARSE stage (Jeff Hennick) - compare stage fix (Jeff Hennick) - COMBINE stage (Jeff Hennick) - STRTOLABEL stage (Jeff Hennick) - DATECONVERT stage (Jeff Hennick) - STRIP stage (Jeff Hennick) - SNAKE stage (Jeff Hennick) - SQL stage (Jeff Hennick) - SQLSELECT add options: PROPERTIES, HEADERS, NOHEADERS, SELECT; documentation (Jeff Hennick - ZONE stage (Jeff Hennick) - VERIFY stage (Jeff Hennick) - REGEX stage (Jeff Hennick) - STRFRLABLE, STRFROMLABEL, STRFRLAB, STRFRLABL (Jeff Hennick) - removed OVER stage, renamed to VAROVER - PICK stage (Jeff Hennick) - OVERLAY stage (Jeff Hennick) - PAD stage add MODULO option (Jeff Hennick)
 www.netrexx.org/files/NetRexx-3.09-GA.zip  local copy
NetRexx v. 3.0.8 GA (6/9/2019) Readme/What's new
NetRexx 3.08 GA [September 5th, 2019] - restore OS/2 and Java 6 compatibility - fixes a serious translator problem introduced in 3.07 - some classes ended up in the wrong files - suppress generics-related warnings by adding a @SuppressWarnings annotation - added a NetRexxC.clgMain method for compile, load and go - the pipes.runner class now (compiles and directly) runs a pipeline - default stage separator is now | like on zVM - added the VM abbreviations of >,<,>> for file I/O device drivers - pipes compiler now reliably finds classes it needs - cleaned up pipes examples to make sure they all compile - fixed C2X function on specs pipe stage - added listzip stage - added zip stage - added unzip stage - added -- (comment) stage (Jeff Hennick) - improved take stage (Jeff Hennick) - added pipe query stage for version info - pipes compiler command is now called pipc - added Pipes for NetRexx docs to distribution - display failed summaries last - Jason Martin - squelched the remark that we found a java compiler and other tourist information - add an experimental rexxcps.nrx from the work of Mike Cowlishaw (for wider evaluation) - added Joy programming language interpreter in examples/languages - added two javafx examples in examples/javafx - resurrected Martin Lafaix' NetRexx Workspace and added to NetRexx distribution (needs java 8) - with added: - pipes execution in tenths of seconds - (without needing to quote the specification like in an OS shell) - command history and editing on par with zsh - multiline editing, history and amends - command alias and shell script is called nrws - added and updated documentation: - moved the chapter on programmatic use of the translator from the Quick Start Guide to the Programmers's Guide - added a chapter on method resolution to the Programmer's Guide - added a chapter on the NetRexx Workspace (nrws) to the Quick Start Guide - updated, rewrote and expanded the Pipelines Quick Start Guide (renamed) - Docker image added to standard distribution
 www.netrexx.org/files/NetRexx-3.08-GA.zip
NetRexx v. 3.0.8BETA3 (5/9/2019) Readme/What's new
NetRexx 3.08 GA [September 5th, 2019] - restore OS/2 and Java 6 compatibility - fixes a serious translator problem introduced in 3.07 - some classes ended up in the wrong files - suppress generics-related warnings by adding a @SuppressWarnings annotation - added a NetRexxC.clgMain method for compile, load and go - the pipes.runner class now (compiles and directly) runs a pipeline - default stage separator is now | like on zVM - added the VM abbreviations of >,<,>> for file I/O device drivers - pipes compiler now reliably finds classes it needs - cleaned up pipes examples to make sure they all compile - fixed C2X function on specs pipe stage - added listzip stage - added zip stage - added unzip stage - added -- (comment) stage (Jeff Hennick) - improved take stage (Jeff Hennick) - added pipe query stage for version info - pipes compiler command is now called pipc - added Pipes for NetRexx docs to distribution - display failed summaries last - Jason Martin - squelched the remark that we found a java compiler and other tourist information - add an experimental rexxcps.nrx from the work of Mike Cowlishaw (for wider evaluation) - added Joy programming language interpreter in examples/languages - added two javafx examples in examples/javafx - resurrected Martin Lafaix' NetRexx Workspace and added to NetRexx distribution (needs java 8) - with added: - pipes execution in tenths of seconds - (without needing to quote the specification like in an OS shell) - command history and editing on par with zsh - multiline editing, history and amends - command alias and shell script is called nrws - added and updated documentation: - moved the chapter on programmatic use of the translator from the Quick Start Guide to the Programmers's Guide - added a chapter on method resolution to the Programmer's Guide - added a chapter on the NetRexx Workspace (nrws) to the Quick Start Guide - updated, rewrote and expanded the Pipelines Quick Start Guide (renamed) - Docker image added to standard distribution
 www.netrexx.org/files/NetRexx-3.08-BETA3.zip
NetRexx v. 3.0.8BETA2 (24/8/2019) Readme/What's new
NetRexx 3.08 GA [August 23th, 2019] - restore OS/2 and Java 6 compatibility - suppress generics-related warnings by adding a @SuppressWarnings - annotation - added a NetRexxC.clgMain method for compile, load and go - the pipes.runner class now (compiles and directly) runs a pipeline - default stage separator is now | like on zVM - added the VM abbreviations of >,<,>> for file I/O device drivers - pipes compiler now reliably finds classes it needs - cleaned up pipes examples to make sure they all compile - fixed C2X function on specs pipe stage - added listzip stage - added zip stage - added unzip stage - pipes compiler command is now called pipc - added Pipes for NetRexx docs to distribution - display failed summaries last - Jason Martin - squelched the remark that we found a java compiler and others - added Joy programming language interpreter in examples/languages - added Martin Lafaix' NetRexx Workspace in NetRexx distribution
 www.netrexx.org/files/NetRexx-3.08-BETA2.zip
NetRexx v. 3.0.7 (GA, 1/10/2018) Readme/What's new
NetRexx 3.07 [October 1st, 2018] - Rexx() constructor no more package private (for use in other languages) - Additions to RexxIO runtime class for more flexibility in say - setOutputStream - pushOutputStream - popOutputStream - one-liner File read I/O in RexxIO().File.forEeachline() - Sqlselect stage changes for Pipelines - soundex() method on Rexx string - documentation corrections by Gustavo Mindreau - fix for class file image corruption problem with ecj compiles
 www.netrexx.org/files/NetRexx-3.07-GA.zip
NetRexx v. 3.0.6 GA (12/12/2017) Readme/What's new
NetRexx 3.06 GA [December 10th, 2017] - Method level annotations will pass through to Java source.
 www.netrexx.org/files/NetRexx-3.06-GA.zip
NetRexx v. 3.0.5 GA (27/4/2017) Readme/What's new
NetRexx 3.05 [April 27th, 2017] - First release after Kermit Kiser's passing. He will be remembered fondly for all his work. - NetRexx has moved to Git on SourceForge for version management - A new level of the Eclipse Java Compiler in NetRexxF.jar - A build error on IBM's J9 JVM's was fixed - The org.netrexx.address package was added as a foundation for OS shell interaction - New documentary comments in nrc.bat and NetRexxC.bat for windows (Kermit Kiser) - Java2Nrx and sysutils tools moved from contrib repository to tools (Marc Remes) - All examples are now versioned under the master branch - A fix for the RexxComparator class - Various fixes and additions to documents.
 www.netrexx.org/files/NetRexx-3.05GA.zip
NetRexx v. 3.0.4 GA (1/6/2015) Readme/What's new
NetRexx 3.04 [June 1st, 2015] - a jsr 199 compliant way of calling the java compiler - Java source is saved on disk by the 3.04 translator if options -keep or -keepasjava are specified just as in release 3.03 of NetRexx. However NetRexx 3.04 does not write java to disk otherwise since it is no longer required in order to produce class files. - an automatic search for a compiler : this release of the translator also finds compilers that are not on the classpath if one cannot be found via the classpath; for example in the directory the translator is loaded from or in any directory associated with the current JVM. This may reduce installation issues due to "Java compiler not found". - integration of Pipes for NetRexx (available in the NetRexxF.jar file) - a new level of (4.4.2) of the eclipse java compiler (available in the NetRexxF.jar file) - a less verbose startup message when the translator is started without options - NetRexxC option list now requires "-help" - new: NETREXX-120, option -javac indicates a preference for the javac compiler - new: NETREXX-120, option -ecj indicates a preference for the ecj compiler - new: the tools section now has support for the vim and nano editors - NetRexx now requires JVM 1.6 to build and run the translator - new: NETREXX-69, do binary support - a fix for NETREXX-117, NPE in jsr223 support - a fix for NETREXX-116, a new 'returnobject' option to return a returncode from a jsr223 script - a fix for NETREXX-114: fixes z/OS compatibility (broken in 3.03) - new: NETREXX-109, a parallel processing api - new: NETREXX-100, a list processing api - a fix for NETREXX-92, enabling negative values in interfaces - a fix for NETREXX-115, enabling trivial subclassing of some collection classes in java 8 and up - new: NETREXX-119, toByteArray() method on type Rexx - a fix for NETREXX-118, error in jsr223 engine - a fix for NETREXX-127, unneeded import of pipes and stages packages - an enhancement to add wildcard (*) support to the NetRexxC -classpath operand matches Java behavior and also adds support for double wildcards (**) which will cause loading of jar files from nested directories (a feature lacking in Java). In addition, the enhanced compiler search will find compilers specified in the -classpath operand and via classpath wildcards. - The Java system property "nrx.compiler" can be used to provide options for the Java compiler called by NetRexx. This property is set on starting the NetRexx translator as in this example: java -Dnrx.compiler="-target 1.6" org.netrexx.process.NetRexxC myprogram If the first option specified is "javac" or "ecj", NetRexx will use that option to prefer selection of a compiler although the "-javac" and "-ecj" translator options will override it. Other options are passed to the Java compiler unchanged. If you are using the Windows script "nrc.bat" to compile programs, you can place the system property in the Windows environment to make it automatic as in this example: set netrexx_java=-Dnrx.compiler="ecj -source 1.6 -target 1.6" The nrx.compiler property can also be set directly in Ant builds or via the Ant project property "ant.netrexxc.javacompiler". - a fix for NETREXX-134 -time output references correct compiler name - a fix for a transient NullPointer exception when looking for compilers - a fix for NETREXX-131 : add RuntimeConstants to enable building of the translator using ecj again The Pipes for NetRexx documentation is not ready yet, but previews will be available from the NetRexx website.
 www.netrexx.org/files/NetRexx-3.04GA.zip
NetRexx (cmd2java) (14/7/2014) Readme/What's new
Creates eComStation versions of Rexx2Nrx' batch files, verifies the setup and uses working Java (v1.4.2) options. Execute CMD2Java.CMD once in your Rexx2Nrx directory to create the most important Rexx2Nrx CMD files. Test file included.
 hobbes.nmsu.edu/download/pub/os2/dev/rexx/cmd2java200.zip
NetRexx 2.0.5 (books) (20/8/2010)
 hobbes.nmsu.edu/download/pub/os2/dev/rexx/netrexxbooks.zip
NetRexx v. 2.0.5 (18/8/2010)
 hobbes.nmsu.edu/download/pub/os2/dev/rexx/netrexx.zip
NetRexx v. 2.0.4 (IBM, 18/8/2010)
 ftp.software.ibm.com/software/awdtools/netrexx/NetRexx.zip
Record updated last time on: 07/03/2024 - 05:28

Translate to...

Add new comment