sftp <sources...> <target>

OpenSSH secure file transfer

Arguments

NameDescription
sourcesFile or directory, local or remote ([user@]host:[path])
targetFile or directory, local or remote ([user@]host:[path])

Options

NameDescription
--help, -hShow help for sftp
-4Forces scp to use IPv4 addresses only
-6Forces scp to use IPv6 addresses only
-AAllows forwarding of ssh-agent(1) to the remote system. The default is not to forward an authentication agent
-aAttempt to continue interrupted transfers rather than overwriting existing partial or complete copies of files. If the partial contents differ from those being transferred, then the resultant file is likely to be corrupt
-B <buffer_size>Specify the size of the buffer that sftp uses when transferring files. Larger buffers require fewer round trips at the cost of higher memory consumption. The default is 32768 bytes
-b <batchfile>Batch mode reads a series of commands from an input batchfile instead of stdin. Since it lacks user interaction it should be used in conjunction with non-interactive authentication to obviate the need to enter a password at connection time (see sshd(8) and ssh-keygen(1) for details)
-CCompression enable. Passes the -C flag to ssh(1) to enable compression
-c <cipher>Selects the cipher to use for encrypting the data transfer. This option is directly passed to ssh(1)
-D <sftp_server_path>Connect directly to a local sftp server (rather than via ssh(1)). This option may be useful in debugging the client and server
-F <ssh_config>Specifies an alternative per-user configuration file for ssh. This option is directly passed to ssh(1)
-fRequests that files be flushed to disk immediately after transfer
-i <identity_file>Selects the file from which the identity (private key) for public key authentication is read. This option is directly passed to ssh(1)
-J <destination>Connect to the target host by first making an scp connection to the jump host described by destination and then establishing a TCP forwarding to the ultimate destination from there. Multiple jump hops may be specified separated by comma characters. This is a shortcut to specify a ProxyJump configuration directive. This option is directly passed to ssh(1)
-l <limit>Limits the used bandwidth, specified in Kbit/s
-NDisables quiet mode, e.g. to override the implicit quiet mode set by the -b flag
-o <option>Can be used to pass options to ssh in the format used in ssh_config(5). This is useful for specifying options for which there is no separate scp command-line flag. For full details of the options listed below, and their possible values, see ssh_config(5)
-P <port>Specifies the port to connect to on the remote host. Note that this option is written with a capital ‘P’, because -p is already reserved for preserving the times and modes of the file
-pPreserves modification times, access times, and modes from the original file
-qQuiet mode: disables the progress meter as well as warning and diagnostic messages from ssh(1)
-R <num_requests>Specify how many requests may be outstanding at any one time. Increasing this may slightly improve file transfer speed but will increase memory usage. The default is 64 outstanding requests
-rRecursively copy entire directories. Note that scp follows symbolic links encountered in the tree traversal
-S <program>Name of program to use for the encrypted connection. The program must understand ssh(1) options
-s <subsystem | sftp_server>Specifies the SSH2 subsystem or the path for an sftp server on the remote host. A path is useful when the remote sshd(8) does not have an sftp subsystem configured
-vVerbose mode. Causes scp and ssh(1) to print debugging messages about their progress. This is helpful in debugging connection, authentication, and configuration problems