REXX
- See also on Wikipedia: REXX
REXX is an acronym for REstructured eXtended eXecutor, an interpreted scripting/programming language developed by IBM. It is simple to learn and is available on many platforms, including i5/OS. It was used as the macro language in the Code/400 GUI editor (precursor to WDSC and RDi.)
Contents
System i implementation
On System i, REXX source is stored in a source member, the default is QREXSRC
. It is executed by STRREXPRC
. It might be helpful to define a PDM or WDSC option to invoke the REXX interpreter: ?STRREXPRC SRCMBR(&N) SRCFILE(&L/&F)
; however, PDM recognizes source members that have source type REXX and will execute STRREXPRC against them when option 16 ("Run procedure") is entered. The question mark in front of the command signifies prompting, which will allow you to fill in any parameters you might want. If PDM option 16 is used, the F4 key will perform prompting.
According to most manuals, all REXX programs should begin with a comment; but this seems to be no longer required, at least under i5/OS. (It is not required on most V5R3 and later systems. It is not clear when this was first allowed.) White space is for programmer convenience and can be added or omitted as desired.
Hello world
/* Hello, world */ say 'Hello, world!' return
Other System i REXX programs
- Switching user profiles
- A ping sweep written in REXX for System i
- Capitalize A Sentence
- Factorial recursion
- Copy table to delimited file with headers
External links
- System i REXX V5R4M0 documentation
- IBM general REXX information
- REXX Language Association
- REXX tutorial
- Rex Swain's VM REXX page
- http://www.rexxinfo.org/
- "TechTip: Calling SQL from REXX" Written by Joe Pluta, Thursday, 24 February 2005