zowe-cli icon indicating copy to clipboard operation
zowe-cli copied to clipboard

Zowe CLI

Results 402 zowe-cli issues
Sort by recently updated
recently updated
newest added

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...

bug
new

Error: ![image](https://user-images.githubusercontent.com/37381190/175038315-13c87c0e-5d2a-47e2-9910-3b76e628c4d5.png) Code: https://github.com/zowe/zowe-cli/blob/215b74c4c9309aff9e554715a2ee79d7cb7ed2ff/packages/cli/src/zosfiles/ZosFilesBase.handler.ts#L87 Originally reported by @sarthakjdev

bug

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]...

bug

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_

enhancement

@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...

enhancement
question

**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...

enhancement

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...

enhancement

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":...

enhancement

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...

enhancement