zowe-cli
zowe-cli copied to clipboard
Zowe CLI
Use `set ZOWE_USE_DAEMON=false` and then `zowe --daemon` to start the daemon manually. Observe that no message is issued but the daemon is active. Before we used to get a message...
Error:  Code: https://github.com/zowe/zowe-cli/blob/215b74c4c9309aff9e554715a2ee79d7cb7ed2ff/packages/cli/src/zosfiles/ZosFilesBase.handler.ts#L87 Originally reported by @sarthakjdev
https://github.com/zowe/zowe-cli/blob/217bae8691f84a3c92189cc8bee5ccb1628d2360/packages/zosfiles/src/methods/get/Get.ts#L65 Suggestion: Add encoding header to the request 😋 ```typescript if (options.encoding) { const encodingHeader = ZosmfHeaders.X_IBM_TEXT; const encodingHeaderKey = Object.keys(encodingHeader)[0]; const encodingHeaderText = encodingHeader[encodingHeaderKey] + ZosmfHeaders.X_IBM_TEXT_ENCODING + options.encoding; encodingHeader[encodingHeaderKey]...
thoughts on a utility function for this ? Maybe we can simplify this to `const [jobName1, jobId1, SpoolId1] = getSpoolDescriptor(spoolDescription1)` _Originally posted by @zFernand0 in https://github.com/zowe/zowe-cli/pull/1491#discussion_r955403646_
@zszabo14 commented on [Tue Feb 02 2021](https://github.com/zowe/community/issues/1014) **Hi ZOWE CLI Team** I just had a strange error when eg. copied a directory to a PDS. : `Command Error: Upload a...
**Goal**: Support search of content within the online help. Search is a common approach to address findability. We originally had a search command prior to the introduction of Imperative. **Overarching...
The z/OSMF REST API provides support for holding and releasing jobs https://www.ibm.com/docs/en/zos/2.4.0?topic=interface-release-job. https://www.ibm.com/docs/en/zos/2.4.0?topic=interface-hold-job Zowe commands to do this could be `zowe jobs hold jobName XXXXXXXX jobId XXXXXXXX` or `zowe jobs...
using `zowe config auto-init` built this configuration: ``` { "$schema": "./zowe.schema.json", "profiles": { "zosmf": { "type": "zosmf", "properties": { "basePath": "/zosmf/api/v1" } }, "ibmzosmf": { "type": "zosmf", "properties": { "basePath":...
z/OSMF REST API supports changing the job class https://www.ibm.com/docs/en/zos/2.4.0?topic=interface-change-job-class A customer asked for this to be available as a CLI command. Their scenario was to run a job with MSGCLASS=H...