Copy a data set to another data set on a specified LPAR.
Usage
zowe zos-files copy data-set-cross-lpar <fromDataSetName> <toDataSetName> [options]
Positional Arguments
- 
fromDataSetName(string)
 
- The name of the data set that you want to copy from
 
- 
toDataSetName(string)
 
- The name of the data set that you want to copy to. If the data set does not exist it will be allocated automatically
 
Options
- 
--replace|--rep(boolean)
 
- Specify this option as true if you wish to replace the target data set if it already exists.
 
- 
--target-data-class|--tdc(string)
 
- The SMS data class to use for the allocation of the target data set.
 
- 
--target-host|--th(string)
 
- The target z/OSMF server host name.
 
- 
--target-management-class|--tmc(string)
 
- The SMS management class to use for the allocation of the target data set.
 
- 
--target-password|--tpw(string)
 
- The target z/OSMF password, which can be the same as your TSO password.
 
- 
--target-port|--tp(number)
 
- The target z/OSMF server port.
 
- 
--target-storage-class|--tsc(string)
 
- The SMS storage class to use for the allocation of the target data set.
 
- 
--target-token-type|--ttt(string)
 
- The value of the token to pass to the API for the target system.
 
- 
--target-token-value|--ttv(string)
 
- The type of token to get and use for the API for the target system.
 
- 
--target-user|--tu(string)
 
- The target z/OSMF user name, which can be the same as your TSO login.
 
- 
--target-volume-serial|--tvs|--target-volser(string)
 
- The volume serial (VOLSER) on which you want the target data set to be placed.
 
- 
--target-zosmf-profile|--t-zosmf-p|--target-zosmf-p(string)
 
- The name of a z/OSMF profile to load for the target host.
 
- 
--response-timeout|--rto(number)
 
- The maximum amount of time in seconds the z/OSMF Files TSO servlet should run before returning a response. Any request exceeding this amount of time will be terminated and return an error. Allowed values: 5 - 600
 
Zosmf Connection Options
- 
--host|-H(string)
 
- The z/OSMF server host name.
 
- 
--port|-P(number)
 
- 
The z/OSMF server port. Default value: 443 
 
- 
--user|-u(string)
 
- Mainframe (z/OSMF) user name, which can be the same as your TSO login.
 
- 
--password|--pass|--pw(string)
 
- Mainframe (z/OSMF) password, which can be the same as your TSO password.
 
- 
--reject-unauthorized|--ru(boolean)
 
- 
--base-path|--bp(string)
 
- The base path for your API mediation layer instance. Specify this option to prepend the base path to all z/OSMF resources when making REST requests. Do not specify this option if you are not using an API mediation layer.
 
- 
--protocol(string)
 
- 
--cert-file(local file path)
 
- The file path to a certificate file to use for authentication
 
- 
--cert-key-file(local file path)
 
- The file path to a certificate key file to use for authentication
 
- 
--completion-timeout|--cto(number)
 
- The amount in time, in seconds, a REST operation should wait to complete before timing out
 
- 
--establish-connection-timeout|--ecto(number)
 
- The amount of time, in seconds, a REST operation should wait while connecting to the server before timing out
 
Profile Options
Base Connection Options
Examples
- 
Copy the data set named 'USER.FROM.SET' to the data set named 'USER.TO.SET' using the --target-zosmf-p option to specify the target host using a zosmf profile: 
- zowe zos-files copy data-set-cross-lpar "USER.FROM.SET" "USER.TO.SET" --target-zosmf-profile SYS1
 
- 
Copy the data set member named 'USER.FROM.SET(MEM1)' to the data set member named 'USER.TO.SET(MEM2)': 
- zowe zos-files copy data-set-cross-lpar "USER.FROM.SET(mem1)" "USER.TO.SET(mem2)" --target-zosmf-profile SYS1
 
- 
Copy the data set named 'USER.FROM.SET' to the data set member named 'USER.TO.SET(MEM2)': 
- zowe zos-files copy data-set-cross-lpar "USER.FROM.SET" "USER.TO.SET(mem2)" --target-zosmf-profile SYS1
 
- 
Copy the data set member named 'USER.FROM.SET(MEM1)' to the data set named 'USER.TO.SET' using the --target-host, --target-user, and --target-password options: 
- zowe zos-files copy data-set-cross-lpar "USER.FROM.SET(mem1)" "USER.TO.SET" --target-host sys1.com --target-user user1 --target-password pass1