-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1435 from zowe/files-download-data-sets-matching
Contribute `zowe files download dataset-matching` command
- Loading branch information
Showing
45 changed files
with
3,051 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...tests__/zosfiles/__integration__/download/dsm/__scripts__/command/command_download_dsm.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
dsn=$1 | ||
rfj=$2 | ||
set -e | ||
|
||
echo "================Z/OS FILES DOWNLOAD DATASET MATCHING===============" | ||
zowe zos-files download dsm "$1" $2 $3 | ||
if [ $? -gt 0 ] | ||
then | ||
exit $? | ||
fi |
13 changes: 13 additions & 0 deletions
13
.../__tests__/zosfiles/__integration__/download/dsm/__scripts__/command_download_dsm_help.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
echo "================Z/OS FILES DOWNLOAD DATASET MATCHING HELP===============" | ||
zowe zos-files download dsm --help | ||
if [ $? -gt 0 ] | ||
then | ||
exit $? | ||
fi | ||
|
||
echo "================Z/OS FILES DOWNLOAD DATASET MATCHING HELP WITH RFJ===========" | ||
zowe zos-files download dsm --help --rfj | ||
exit $? |
Oops, something went wrong.