Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dkelosky/rexx-jenkins
https://github.com/dkelosky/rexx-jenkins
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dkelosky/rexx-jenkins
- Owner: dkelosky
- Created: 2022-01-14T19:00:06.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T02:27:27.000Z (almost 2 years ago)
- Last Synced: 2024-10-19T02:15:14.809Z (3 months ago)
- Language: JavaScript
- Size: 402 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# REXX Utilities
REXX project with utilities to help with REXX development.
## Installation
1. `git clone`
2. `npm install`
3. create `config/local.json5` like [`config/default.json5`](./config/default.json5) and customize with proper values
4. `zowe config secure` or create `zowe.config.user.json` like [`zowe.config.json`](./zowe.config.json) with user & password & account
5. Update host / port in `zowe.config.json`.## Usage
Add dynamic allocation or other TSO commands needed in the address space to `cmd.txt`, e.g.:
```txt
allocate file(myexec) dsn('ibmuser.rexx') shr
concat file(sysexec myexec)
```Run [`setup`](#setup) then `ex dsn(member)`. This creates a `cmd.txt` file (which is `.gitignore`ed) to keep track of
an active TSO servlet.### setup.bat
[`setup`](./setup.bat) starts TSO address space and keeps it running.
### send.bat
[`ex`](./ex.bad) wraps running TSO commands via `zowe` against a TSO address space started via `setup`.