You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this lab exercise you will use the Zowe CLI to automate the compilation and testing of the COBOL program you reviewed in the previous lab. Refer to the section on the "Installation of Zowe CLI and Plug-ins" to install Zowe CLI if you have not already done so. Before developing the automation, we will first leverage the Zowe CLI interactively.
1218
+
In this lab exercise you will use the Zowe CLI to automate submitting the JCL to compile, link, and run the COBOL program and downloading the spool output. Refer to the section on the "Installation of Zowe CLI and Plug-ins" to install Zowe CLI if you have not already done so. Before developing the automation, we will first leverage the Zowe CLI interactively.
1215
1219
1216
1220
### Zowe CLI - Interactive Usage
1217
1221
In this section, we will use the Zowe CLI interactively to view data set members, submit jobs, and review spool output.
@@ -1340,7 +1344,7 @@ In this section, we will leverage the Zowe CLI programmatically to automate subm
1340
1344
1341
1345
*Figure 37. Use of `npm init` to create `package.json` for the project*
1342
1346
1343
-
2. Now that we have our `package.json` simply replace the `test` script with a `clg` script that runs the following zowe command (replace your with your high level qualifier):
1347
+
2. Now that we have our `package.json` simply replace the `test` script with a `clg` script that runs the following zowe command (replace `Z80462` with your high level qualifier):
1344
1348
1345
1349
```
1346
1350
zowe jobs submit ds 'Z80462.JCL(HELLO)' -d .
@@ -1352,7 +1356,7 @@ You can name the script whatever you want. I only suggested `clg` because the `C
1352
1356
1353
1357
*Figure 38. Final `package.json` and `npm run clg` execution*
1354
1358
1355
-
3. If you prefer a graphical trigger that is also readily available in VS Code as shown in the following figure. Essentially, the CLI enables you to quickly build your own buttons for your custom z/OS tasks. You could also invoke a script rather than a single command to accomodate more complex scenarios.
1359
+
3. If you prefer a graphical trigger, you can leverage VS Code as shown in the following figure. Essentially, the CLI enables you to quickly build your own buttons for your custom z/OS tasks. You could also invoke a script rather than a single command to accomodate more complex scenarios.
0 commit comments