zowe › zos-ftp › download › uss-file
Download the contents of a USS file to a local file
Usage
zowe zos-ftp download uss-file <ussFile> [options]
Positional Arguments
ussFile
(string)- The path to the USS file you would like to download.
Options
--binary
|-b
(boolean)- Download the file content in binary mode, which means that no data conversion is performed. The data transfer process returns each line as-is, without translation. No delimiters are added between records.
--file
|-f
(string)- The path to the local file where you want to download the content. When you omit the option, the command generates a file name automatically for you.
--secure-ftp
(boolean)Set to true for both control and data connection encryption, 'control' for control connection encryption only, or 'implicit' for implicitly encrypted control connection (this mode is deprecated in modern times, but usually uses port 990). Note: Unfortunately, this plugin's functionality only works with FTP and FTPS, not 'SFTP' which is FTP over SSH.
Default value: true
--connection-timeout
|--ct
(number)How long (in milliseconds) to wait for the control connection to be established.
Default value: 10000
Required Options
--host
|-H
(string)- The hostname or IP address of the z/OS server to connect to.
--port
|-P
(number)The port of the z/OS FTP server.
Default value: 21
--user
|-u
(string)- Username for authentication on z/OS
--password
|-p
|--pass
|--pw
(string)- Password to authenticate to FTP.
TLS / Secure Connection options
--reject-unauthorized
|--ru
(boolean)- Reject self-signed certificates. Only specify this if you are connecting to a secure FTP instance.
--server-name
|--sn
(string)- Server name for the SNI (Server Name Indication) TLS extension. Only specify if you are connecting securely
Profile Options
--zftp-profile
|--zftp-p
(string)- The name of a (zftp) profile to load for this command execution.
Examples
Download the USS file "/u/users/ibmuser/main.obj" in binary mode to the local file "main.obj":
zowe zos-ftp download uss-file "/u/users/ibmuser/main.obj" -b -f main.obj