blob: 7140bc19bcbe7d3dbf4b5f0dcb04364a3dc27d0b [file] [log] [blame]
djm@openbsd.org5c1a6352018-11-16 02:30:20 +00001.\" $OpenBSD: sftp.1,v 1.122 2018/11/16 02:30:20 djm Exp $
Damien Miller33804262001-02-04 23:20:18 +11002.\"
Ben Lindstrom92a2e382001-03-05 06:59:27 +00003.\" Copyright (c) 2001 Damien Miller. All rights reserved.
Damien Miller33804262001-02-04 23:20:18 +11004.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\" notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\" notice, this list of conditions and the following disclaimer in the
12.\" documentation and/or other materials provided with the distribution.
13.\"
14.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24.\"
djm@openbsd.org5c1a6352018-11-16 02:30:20 +000025.Dd $Mdocdate: November 16 2018 $
Damien Miller33804262001-02-04 23:20:18 +110026.Dt SFTP 1
27.Os
28.Sh NAME
29.Nm sftp
Damien Miller50677922003-05-23 18:44:04 +100030.Nd secure file transfer program
Damien Miller33804262001-02-04 23:20:18 +110031.Sh SYNOPSIS
Damien Millerd6ead282003-05-14 19:30:38 +100032.Nm sftp
djm@openbsd.org3575f0b2017-05-02 08:54:19 +000033.Op Fl 46aCfpqrv
Damien Miller81b6e782002-02-08 22:06:03 +110034.Op Fl B Ar buffer_size
Darren Tucker1f203942003-10-15 15:50:42 +100035.Op Fl b Ar batchfile
Darren Tucker46bbbe32009-10-07 08:21:48 +110036.Op Fl c Ar cipher
Darren Tucker282b4022009-10-07 08:23:06 +110037.Op Fl D Ar sftp_server_path
Damien Miller81b6e782002-02-08 22:06:03 +110038.Op Fl F Ar ssh_config
Darren Tuckerc07138e2009-10-07 08:23:44 +110039.Op Fl i Ar identity_file
Damien Miller65e42f82010-09-24 22:15:11 +100040.Op Fl l Ar limit
Darren Tucker1f203942003-10-15 15:50:42 +100041.Op Fl o Ar ssh_option
Darren Tucker282b4022009-10-07 08:23:06 +110042.Op Fl P Ar port
Damien Miller16a13332002-02-13 14:03:56 +110043.Op Fl R Ar num_requests
Ben Lindstrom6a337632001-09-18 05:47:32 +000044.Op Fl S Ar program
Darren Tucker1f203942003-10-15 15:50:42 +100045.Op Fl s Ar subsystem | sftp_server
millert@openbsd.org887669e2017-10-21 23:06:24 +000046.Ar destination
Damien Miller33804262001-02-04 23:20:18 +110047.Sh DESCRIPTION
48.Nm
millert@openbsd.org887669e2017-10-21 23:06:24 +000049is a file transfer program, similar to
Damien Miller33804262001-02-04 23:20:18 +110050.Xr ftp 1 ,
51which performs all operations over an encrypted
52.Xr ssh 1
53transport.
54It may also use many features of ssh, such as public key authentication and
55compression.
Damien Miller33804262001-02-04 23:20:18 +110056.Pp
millert@openbsd.org887669e2017-10-21 23:06:24 +000057The
58.Ar destination
59may be specified either as
jmc@openbsd.org@openbsd.org0b2e2892017-10-25 06:19:46 +000060.Sm off
61.Oo user @ Oc host Op : path
62.Sm on
63or as a URI in the form
64.Sm off
65.No sftp:// Oo user @ Oc host Oo : port Oc Op / path .
66.Sm on
millert@openbsd.org887669e2017-10-21 23:06:24 +000067.Pp
68If the
69.Ar destination
70includes a
71.Ar path
72and it is not a directory,
73.Nm
74will retrieve files automatically if a non-interactive
Ben Lindstromaafff9c2001-05-06 03:01:02 +000075authentication method is used; otherwise it will do so after
76successful interactive authentication.
Ben Lindstrom63667f62001-04-13 00:00:14 +000077.Pp
millert@openbsd.org887669e2017-10-21 23:06:24 +000078If no
79.Ar path
80is specified, or if the
81.Ar path
82is a directory,
Darren Tucker16e254d2004-12-06 22:46:45 +110083.Nm
millert@openbsd.org887669e2017-10-21 23:06:24 +000084will log in to the specified
85.Ar host
86and enter interactive command mode, changing to the remote directory
87if one was specified.
88An optional trailing slash can be used to force the
89.Ar path
90to be interpreted as a directory.
Ben Lindstrom63667f62001-04-13 00:00:14 +000091.Pp
millert@openbsd.org887669e2017-10-21 23:06:24 +000092Since the destination formats use colon characters to delimit host
93names from path names or port numbers, IPv6 addresses must be
94enclosed in square brackets to avoid ambiguity.
Damien Miller58a77e22011-05-15 08:36:29 +100095.Pp
Damien Miller33804262001-02-04 23:20:18 +110096The options are as follows:
97.Bl -tag -width Ds
Darren Tucker46bbbe32009-10-07 08:21:48 +110098.It Fl 4
99Forces
100.Nm
101to use IPv4 addresses only.
102.It Fl 6
103Forces
104.Nm
105to use IPv6 addresses only.
Damien Millerc6895c52013-08-21 02:40:21 +1000106.It Fl a
Damien Miller798a0252014-05-15 13:47:37 +1000107Attempt to continue interrupted transfers rather than overwriting
Damien Millerd875ff72014-05-15 13:47:15 +1000108existing partial or complete copies of files.
Damien Miller798a0252014-05-15 13:47:37 +1000109If the partial contents differ from those being transferred,
Damien Millerd875ff72014-05-15 13:47:15 +1000110then the resultant file is likely to be corrupt.
Darren Tucker1f203942003-10-15 15:50:42 +1000111.It Fl B Ar buffer_size
112Specify the size of the buffer that
113.Nm
114uses when transferring files.
115Larger buffers require fewer round trips at the cost of higher
116memory consumption.
117The default is 32768 bytes.
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000118.It Fl b Ar batchfile
119Batch mode reads a series of commands from an input
Ben Lindstrom283cb822001-03-09 00:09:02 +0000120.Ar batchfile
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000121instead of
Ben Lindstrom283cb822001-03-09 00:09:02 +0000122.Em stdin .
123Since it lacks user interaction it should be used in conjunction with
millert@openbsd.org887669e2017-10-21 23:06:24 +0000124non-interactive authentication to obviate the need to enter a password
125at connection time (see
126.Xr sshd 8
127and
128.Xr ssh-keygen 1
129for details).
djm@openbsd.org5c1a6352018-11-16 02:30:20 +0000130.Pp
Damien Miller44f75c12004-01-21 10:58:47 +1100131A
Damien Miller86a39682004-01-21 11:00:04 +1100132.Ar batchfile
133of
134.Sq \-
Damien Miller44f75c12004-01-21 10:58:47 +1100135may be used to indicate standard input.
Ben Lindstrom283cb822001-03-09 00:09:02 +0000136.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000137will abort if any of the following
138commands fail:
schwarze@openbsd.org90ef45f2018-11-13 07:22:45 +0000139.Ic get , put , reget , reput , rename , ln ,
Damien Miller495dca32003-04-01 21:42:14 +1000140.Ic rm , mkdir , chdir , ls ,
Damien Miller64058cb2008-05-19 14:54:25 +1000141.Ic lchdir , chmod , chown ,
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100142.Ic chgrp , lpwd , df , symlink ,
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000143and
Ben Lindstrom283cb822001-03-09 00:09:02 +0000144.Ic lmkdir .
djm@openbsd.org5c1a6352018-11-16 02:30:20 +0000145.Pp
Damien Miller495dca32003-04-01 21:42:14 +1000146Termination on error can be suppressed on a command by command basis by
147prefixing the command with a
Damien Miller86a39682004-01-21 11:00:04 +1100148.Sq \-
Damien Miller50677922003-05-23 18:44:04 +1000149character (for example,
150.Ic -rm /tmp/blah* ) .
djm@openbsd.org5c1a6352018-11-16 02:30:20 +0000151Echo of the command may be suppressed by prefixing the command with a
152.Sq @
153character.
154These two prefixes may be combined in any order, for example
155.Ic -@ls /bsd .
Darren Tucker1f203942003-10-15 15:50:42 +1000156.It Fl C
157Enables compression (via ssh's
158.Fl C
159flag).
Darren Tuckeradba1ba2009-10-07 08:22:20 +1100160.It Fl c Ar cipher
161Selects the cipher to use for encrypting the data transfers.
162This option is directly passed to
163.Xr ssh 1 .
Darren Tucker282b4022009-10-07 08:23:06 +1100164.It Fl D Ar sftp_server_path
165Connect directly to a local sftp server
166(rather than via
167.Xr ssh 1 ) .
168This option may be useful in debugging the client and server.
Darren Tucker1f203942003-10-15 15:50:42 +1000169.It Fl F Ar ssh_config
170Specifies an alternative
171per-user configuration file for
172.Xr ssh 1 .
173This option is directly passed to
174.Xr ssh 1 .
Damien Millerf29238e2013-10-17 11:48:52 +1100175.It Fl f
176Requests that files be flushed to disk immediately after transfer.
177When uploading files, this feature is only enabled if the server
178implements the "fsync@openssh.com" extension.
Darren Tucker46bbbe32009-10-07 08:21:48 +1100179.It Fl i Ar identity_file
180Selects the file from which the identity (private key) for public key
181authentication is read.
182This option is directly passed to
183.Xr ssh 1 .
Damien Miller65e42f82010-09-24 22:15:11 +1000184.It Fl l Ar limit
185Limits the used bandwidth, specified in Kbit/s.
Damien Miller33804262001-02-04 23:20:18 +1100186.It Fl o Ar ssh_option
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000187Can be used to pass options to
188.Nm ssh
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000189in the format used in
190.Xr ssh_config 5 .
191This is useful for specifying options
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000192for which there is no separate
193.Nm sftp
Damien Miller50677922003-05-23 18:44:04 +1000194command-line flag.
195For example, to specify an alternate port use:
Ben Lindstrom6a337632001-09-18 05:47:32 +0000196.Ic sftp -oPort=24 .
Darren Tucker1f203942003-10-15 15:50:42 +1000197For full details of the options listed below, and their possible values, see
198.Xr ssh_config 5 .
199.Pp
200.Bl -tag -width Ds -offset indent -compact
201.It AddressFamily
202.It BatchMode
203.It BindAddress
jmc@openbsd.org7d330a12018-02-23 07:38:09 +0000204.It BindInterface
Damien Millerc0049bd2013-10-23 16:29:59 +1100205.It CanonicalDomains
206.It CanonicalizeFallbackLocal
207.It CanonicalizeHostname
208.It CanonicalizeMaxDots
209.It CanonicalizePermittedCNAMEs
jmc@openbsd.orge6933a22018-09-20 06:58:48 +0000210.It CASignatureAlgorithms
jmc@openbsd.orgc5f7c082015-09-25 18:19:54 +0000211.It CertificateFile
Darren Tucker1f203942003-10-15 15:50:42 +1000212.It ChallengeResponseAuthentication
213.It CheckHostIP
Darren Tucker1f203942003-10-15 15:50:42 +1000214.It Ciphers
Darren Tucker1f203942003-10-15 15:50:42 +1000215.It Compression
naddy@openbsd.org9a82e242017-05-03 21:49:18 +0000216.It ConnectionAttempts
Darren Tucker3d5cbb72004-05-03 09:13:15 +1000217.It ConnectTimeout
Damien Miller0e220db2004-06-15 10:34:08 +1000218.It ControlMaster
219.It ControlPath
Damien Millere5777722011-09-22 21:34:15 +1000220.It ControlPersist
Darren Tucker1f203942003-10-15 15:50:42 +1000221.It GlobalKnownHostsFile
222.It GSSAPIAuthentication
223.It GSSAPIDelegateCredentials
Damien Miller27e9c512005-03-02 12:04:16 +1100224.It HashKnownHosts
Darren Tucker1f203942003-10-15 15:50:42 +1000225.It Host
226.It HostbasedAuthentication
djm@openbsd.org46347ed2015-01-30 11:43:14 +0000227.It HostbasedKeyTypes
Darren Tucker1f203942003-10-15 15:50:42 +1000228.It HostKeyAlgorithms
229.It HostKeyAlias
230.It HostName
jmc@openbsd.org772e6ce2016-06-29 17:14:28 +0000231.It IdentitiesOnly
markus@openbsd.org75e21682016-05-04 14:32:26 +0000232.It IdentityAgent
Darren Tucker1f203942003-10-15 15:50:42 +1000233.It IdentityFile
Damien Miller0a184732010-11-20 15:21:03 +1100234.It IPQoS
Damien Millere5777722011-09-22 21:34:15 +1000235.It KbdInteractiveAuthentication
Darren Tucker636ca902004-11-05 20:22:00 +1100236.It KbdInteractiveDevices
Damien Miller2beb32f2010-09-24 22:16:03 +1000237.It KexAlgorithms
Darren Tucker1f203942003-10-15 15:50:42 +1000238.It LogLevel
239.It MACs
240.It NoHostAuthenticationForLocalhost
241.It NumberOfPasswordPrompts
242.It PasswordAuthentication
Damien Miller7ea845e2010-02-12 09:21:02 +1100243.It PKCS11Provider
Darren Tucker1f203942003-10-15 15:50:42 +1000244.It Port
245.It PreferredAuthentications
Darren Tucker1f203942003-10-15 15:50:42 +1000246.It ProxyCommand
jmc@openbsd.orge4eb7d92016-07-16 06:57:55 +0000247.It ProxyJump
jmc@openbsd.org42b690b2017-05-02 14:06:37 +0000248.It PubkeyAcceptedKeyTypes
Darren Tucker1f203942003-10-15 15:50:42 +1000249.It PubkeyAuthentication
Darren Tucker62388b22006-01-20 11:31:47 +1100250.It RekeyLimit
Darren Tucker7a6c0662004-05-02 22:14:03 +1000251.It SendEnv
Damien Miller509b0102003-12-17 16:33:10 +1100252.It ServerAliveInterval
253.It ServerAliveCountMax
jmc@openbsd.orgacf42602018-06-09 06:36:31 +0000254.It SetEnv
Darren Tucker1f203942003-10-15 15:50:42 +1000255.It StrictHostKeyChecking
Damien Miller12c150e2003-12-17 16:31:10 +1100256.It TCPKeepAlive
djm@openbsd.org1d1092b2015-01-26 12:16:36 +0000257.It UpdateHostKeys
Darren Tucker1f203942003-10-15 15:50:42 +1000258.It User
259.It UserKnownHostsFile
260.It VerifyHostKeyDNS
Darren Tucker1f203942003-10-15 15:50:42 +1000261.El
Darren Tucker282b4022009-10-07 08:23:06 +1100262.It Fl P Ar port
263Specifies the port to connect to on the remote host.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100264.It Fl p
265Preserves modification times, access times, and modes from the
266original files transferred.
Darren Tucker46bbbe32009-10-07 08:21:48 +1100267.It Fl q
268Quiet mode: disables the progress meter as well as warning and
269diagnostic messages from
270.Xr ssh 1 .
Damien Miller16a13332002-02-13 14:03:56 +1100271.It Fl R Ar num_requests
Damien Miller50677922003-05-23 18:44:04 +1000272Specify how many requests may be outstanding at any one time.
273Increasing this may slightly improve file transfer speed
274but will increase memory usage.
Damien Miller94717b02008-07-16 21:17:23 +1000275The default is 64 outstanding requests.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100276.It Fl r
277Recursively copy entire directories when uploading and downloading.
278Note that
279.Nm
280does not follow symbolic links encountered in the tree traversal.
Ben Lindstrom6a337632001-09-18 05:47:32 +0000281.It Fl S Ar program
282Name of the
283.Ar program
284to use for the encrypted connection.
285The program must understand
286.Xr ssh 1
287options.
Darren Tucker1f203942003-10-15 15:50:42 +1000288.It Fl s Ar subsystem | sftp_server
289Specifies the SSH2 subsystem or the path for an sftp server
290on the remote host.
jmc@openbsd.org2b6f7992017-05-03 06:32:02 +0000291A path is useful when the remote
Darren Tucker1f203942003-10-15 15:50:42 +1000292.Xr sshd 8
293does not have an sftp subsystem configured.
294.It Fl v
295Raise logging level.
296This option is also passed to ssh.
Damien Miller33804262001-02-04 23:20:18 +1100297.El
298.Sh INTERACTIVE COMMANDS
Damien Millerd7686fd2001-02-10 00:40:03 +1100299Once in interactive mode,
300.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000301understands a set of commands similar to those of
Damien Miller33804262001-02-04 23:20:18 +1100302.Xr ftp 1 .
Darren Tucker16e254d2004-12-06 22:46:45 +1100303Commands are case insensitive.
304Pathnames that contain spaces must be enclosed in quotes.
305Any special characters contained within pathnames that are recognized by
306.Xr glob 3
307must be escaped with backslashes
308.Pq Sq \e .
309.Bl -tag -width Ds
Ben Lindstrom59e12492001-08-15 23:22:56 +0000310.It Ic bye
Damien Miller50677922003-05-23 18:44:04 +1000311Quit
312.Nm sftp .
djm@openbsd.org@openbsd.orgfbe8e7a2017-11-03 03:46:52 +0000313.It Ic cd Op Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000314Change remote directory to
Damien Millerd7686fd2001-02-10 00:40:03 +1100315.Ar path .
djm@openbsd.org@openbsd.orgfbe8e7a2017-11-03 03:46:52 +0000316If
317.Ar path
318is not specified, then change directory to the one the session started in.
Damien Millerd7686fd2001-02-10 00:40:03 +1100319.It Ic chgrp Ar grp Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000320Change group of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100321.Ar path
322to
Damien Miller33804262001-02-04 23:20:18 +1100323.Ar grp .
Darren Tucker16e254d2004-12-06 22:46:45 +1100324.Ar path
325may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000326.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100327characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100328.Ar grp
Damien Millerd7686fd2001-02-10 00:40:03 +1100329must be a numeric GID.
330.It Ic chmod Ar mode Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000331Change permissions of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100332.Ar path
333to
334.Ar mode .
Darren Tucker16e254d2004-12-06 22:46:45 +1100335.Ar path
336may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000337.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100338characters and may match multiple files.
Damien Millerd7686fd2001-02-10 00:40:03 +1100339.It Ic chown Ar own Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000340Change owner of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100341.Ar path
342to
Damien Miller33804262001-02-04 23:20:18 +1100343.Ar own .
Darren Tucker16e254d2004-12-06 22:46:45 +1100344.Ar path
345may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000346.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100347characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100348.Ar own
349must be a numeric UID.
Damien Millerd671e5a2008-05-19 14:53:33 +1000350.It Xo Ic df
351.Op Fl hi
352.Op Ar path
353.Xc
354Display usage information for the filesystem holding the current directory
355(or
356.Ar path
357if specified).
358If the
359.Fl h
360flag is specified, the capacity information will be displayed using
361"human-readable" suffixes.
362The
363.Fl i
364flag requests display of inode information in addition to capacity information.
365This command is only supported on servers that implement the
366.Dq statvfs@openssh.com
367extension.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000368.It Ic exit
Damien Miller50677922003-05-23 18:44:04 +1000369Quit
370.Nm sftp .
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000371.It Xo Ic get
Damien Millerf29238e2013-10-17 11:48:52 +1100372.Op Fl afPpr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000373.Ar remote-path
374.Op Ar local-path
375.Xc
Damien Miller33804262001-02-04 23:20:18 +1100376Retrieve the
Damien Millerd7686fd2001-02-10 00:40:03 +1100377.Ar remote-path
Damien Miller33804262001-02-04 23:20:18 +1100378and store it on the local machine.
379If the local
Ben Lindstrom24643222001-06-25 05:08:11 +0000380path name is not specified, it is given the same name it has on the
Damien Miller50677922003-05-23 18:44:04 +1000381remote machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100382.Ar remote-path
383may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000384.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100385characters and may match multiple files.
386If it does and
387.Ar local-path
388is specified, then
389.Ar local-path
390must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100391.Pp
Damien Miller0d032412013-07-25 11:56:52 +1000392If the
393.Fl a
394flag is specified, then attempt to resume partial transfers of existing files.
395Note that resumption assumes that any partial copy of the local file matches
396the remote copy.
Damien Millereec84062013-08-21 02:39:39 +1000397If the remote file contents differ from the partial local copy then the
398resultant file is likely to be corrupt.
Damien Miller0d032412013-07-25 11:56:52 +1000399.Pp
Damien Millerf29238e2013-10-17 11:48:52 +1100400If the
401.Fl f
402flag is specified, then
403.Xr fsync 2
Damien Miller1edcbf62013-10-18 10:17:17 +1100404will be called after the file transfer has completed to flush the file
Damien Millerf29238e2013-10-17 11:48:52 +1100405to disk.
406.Pp
Darren Tuckerb3b40a82009-10-07 08:39:09 +1100407If either the
Darren Tucker05016b22009-10-07 08:38:23 +1100408.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100409or
410.Fl p
Darren Tucker16e254d2004-12-06 22:46:45 +1100411flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000412copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100413.Pp
414If the
415.Fl r
416flag is specified then directories will be copied recursively.
417Note that
418.Nm
419does not follow symbolic links when performing recursive transfers.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000420.It Ic help
421Display help text.
djm@openbsd.org@openbsd.orgfbe8e7a2017-11-03 03:46:52 +0000422.It Ic lcd Op Ar path
Darren Tucker1f203942003-10-15 15:50:42 +1000423Change local directory to
424.Ar path .
djm@openbsd.org@openbsd.orgfbe8e7a2017-11-03 03:46:52 +0000425If
426.Ar path
427is not specified, then change directory to the local user's home directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100428.It Ic lls Op Ar ls-options Op Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000429Display local directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100430.Ar path
431or current directory if
432.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100433is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100434.Ar ls-options
435may contain any flags supported by the local system's
436.Xr ls 1
437command.
438.Ar path
439may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000440.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100441characters and may match multiple files.
Damien Millerd7686fd2001-02-10 00:40:03 +1100442.It Ic lmkdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100443Create local directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100444.Ar path .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100445.It Xo Ic ln
446.Op Fl s
447.Ar oldpath
448.Ar newpath
449.Xc
450Create a link from
Damien Miller058316f2001-03-08 10:08:49 +1100451.Ar oldpath
452to
453.Ar newpath .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100454If the
455.Fl s
456flag is specified the created link is a symbolic link, otherwise it is
457a hard link.
Damien Millerd7686fd2001-02-10 00:40:03 +1100458.It Ic lpwd
459Print local working directory.
Damien Millere1a49812002-09-12 09:54:25 +1000460.It Xo Ic ls
Darren Tucker75fe6262010-01-15 11:42:51 +1100461.Op Fl 1afhlnrSt
Damien Millere1a49812002-09-12 09:54:25 +1000462.Op Ar path
463.Xc
Darren Tucker16e254d2004-12-06 22:46:45 +1100464Display a remote directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100465.Ar path
Darren Tucker16e254d2004-12-06 22:46:45 +1100466or the current directory if
Damien Miller33804262001-02-04 23:20:18 +1100467.Ar path
Damien Miller50677922003-05-23 18:44:04 +1000468is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100469.Ar path
470may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000471.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100472characters and may match multiple files.
Darren Tucker15ca6e82004-06-22 13:08:21 +1000473.Pp
Darren Tucker16e254d2004-12-06 22:46:45 +1100474The following flags are recognized and alter the behaviour of
Darren Tucker15ca6e82004-06-22 13:08:21 +1000475.Ic ls
Darren Tucker16e254d2004-12-06 22:46:45 +1100476accordingly:
477.Bl -tag -width Ds
478.It Fl 1
479Produce single columnar output.
480.It Fl a
481List files beginning with a dot
482.Pq Sq \&. .
483.It Fl f
484Do not sort the listing.
485The default sort order is lexicographical.
Darren Tucker2901e2d2010-01-13 22:44:06 +1100486.It Fl h
487When used with a long format option, use unit suffixes: Byte, Kilobyte,
488Megabyte, Gigabyte, Terabyte, Petabyte, and Exabyte in order to reduce
489the number of digits to four or fewer using powers of 2 for sizes (K=1024,
490M=1048576, etc.).
Darren Tucker75fe6262010-01-15 11:42:51 +1100491.It Fl l
492Display additional details including permissions
493and ownership information.
Darren Tucker16e254d2004-12-06 22:46:45 +1100494.It Fl n
495Produce a long listing with user and group information presented
496numerically.
497.It Fl r
498Reverse the sort order of the listing.
499.It Fl S
500Sort the listing by file size.
501.It Fl t
502Sort the listing by last modification time.
503.El
Damien Millerd7686fd2001-02-10 00:40:03 +1100504.It Ic lumask Ar umask
Ben Lindstrom24643222001-06-25 05:08:11 +0000505Set local umask to
Damien Millerd7686fd2001-02-10 00:40:03 +1100506.Ar umask .
507.It Ic mkdir Ar path
508Create remote directory specified by
509.Ar path .
Damien Miller62d57f62003-01-10 21:43:24 +1100510.It Ic progress
511Toggle display of progress meter.
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000512.It Xo Ic put
Damien Millerd875ff72014-05-15 13:47:15 +1000513.Op Fl afPpr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000514.Ar local-path
Ben Lindstromd5767812002-12-23 02:23:37 +0000515.Op Ar remote-path
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000516.Xc
Damien Miller33804262001-02-04 23:20:18 +1100517Upload
Damien Millerd7686fd2001-02-10 00:40:03 +1100518.Ar local-path
Damien Miller50677922003-05-23 18:44:04 +1000519and store it on the remote machine.
520If the remote path name is not specified, it is given the same name it has
521on the local machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100522.Ar local-path
523may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000524.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100525characters and may match multiple files.
526If it does and
527.Ar remote-path
528is specified, then
529.Ar remote-path
530must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100531.Pp
Damien Millerf29238e2013-10-17 11:48:52 +1100532If the
Damien Miller798a0252014-05-15 13:47:37 +1000533.Fl a
Damien Millerd875ff72014-05-15 13:47:15 +1000534flag is specified, then attempt to resume partial
535transfers of existing files.
Damien Miller798a0252014-05-15 13:47:37 +1000536Note that resumption assumes that any partial copy of the remote file
Damien Millerd875ff72014-05-15 13:47:15 +1000537matches the local copy.
538If the local file contents differ from the remote local copy then
539the resultant file is likely to be corrupt.
540.Pp
541If the
Damien Millerf29238e2013-10-17 11:48:52 +1100542.Fl f
543flag is specified, then a request will be sent to the server to call
544.Xr fsync 2
545after the file has been transferred.
546Note that this is only supported by servers that implement
547the "fsync@openssh.com" extension.
548.Pp
Darren Tuckerddccfb42011-08-07 23:12:26 +1000549If either the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000550.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100551or
552.Fl p
553flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000554copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100555.Pp
556If the
557.Fl r
558flag is specified then directories will be copied recursively.
559Note that
560.Nm
561does not follow symbolic links when performing recursive transfers.
Damien Millerd7686fd2001-02-10 00:40:03 +1100562.It Ic pwd
563Display remote working directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100564.It Ic quit
Damien Miller50677922003-05-23 18:44:04 +1000565Quit
566.Nm sftp .
Damien Miller0d032412013-07-25 11:56:52 +1000567.It Xo Ic reget
568.Op Fl Ppr
569.Ar remote-path
570.Op Ar local-path
571.Xc
572Resume download of
573.Ar remote-path .
574Equivalent to
575.Ic get
576with the
577.Fl a
578flag set.
Damien Millerd875ff72014-05-15 13:47:15 +1000579.It Xo Ic reput
580.Op Fl Ppr
581.Op Ar local-path
582.Ar remote-path
583.Xc
584Resume upload of
585.Op Ar local-path .
586Equivalent to
587.Ic put
Damien Miller798a0252014-05-15 13:47:37 +1000588with the
Damien Millerd875ff72014-05-15 13:47:15 +1000589.Fl a
590flag set.
Damien Millerd7686fd2001-02-10 00:40:03 +1100591.It Ic rename Ar oldpath Ar newpath
Damien Miller33804262001-02-04 23:20:18 +1100592Rename remote file from
593.Ar oldpath
594to
Damien Millerd7686fd2001-02-10 00:40:03 +1100595.Ar newpath .
Damien Millerd7686fd2001-02-10 00:40:03 +1100596.It Ic rm Ar path
Damien Miller33804262001-02-04 23:20:18 +1100597Delete remote file specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100598.Ar path .
Darren Tucker1f203942003-10-15 15:50:42 +1000599.It Ic rmdir Ar path
600Remove remote directory specified by
601.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100602.It Ic symlink Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000603Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100604.Ar oldpath
605to
606.Ar newpath .
Damien Miller63421802003-01-08 14:05:23 +1100607.It Ic version
608Display the
609.Nm
610protocol version.
Damien Miller62fd18a2009-01-28 16:14:09 +1100611.It Ic \&! Ns Ar command
Ben Lindstrom24643222001-06-25 05:08:11 +0000612Execute
Damien Miller33804262001-02-04 23:20:18 +1100613.Ar command
Damien Millerd7686fd2001-02-10 00:40:03 +1100614in local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000615.It Ic \&!
Damien Millerd7686fd2001-02-10 00:40:03 +1100616Escape to local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000617.It Ic \&?
Damien Millerd7686fd2001-02-10 00:40:03 +1100618Synonym for help.
619.El
Damien Miller33804262001-02-04 23:20:18 +1100620.Sh SEE ALSO
Darren Tucker1f203942003-10-15 15:50:42 +1000621.Xr ftp 1 ,
Darren Tucker16e254d2004-12-06 22:46:45 +1100622.Xr ls 1 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000623.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +1100624.Xr ssh 1 ,
625.Xr ssh-add 1 ,
626.Xr ssh-keygen 1 ,
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000627.Xr ssh_config 5 ,
jmc@openbsd.orge2127ab2018-07-23 19:53:55 +0000628.Xr glob 7 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000629.Xr sftp-server 8 ,
630.Xr sshd 8
631.Rs
Ben Lindstrom90fd0602001-06-25 04:45:33 +0000632.%A T. Ylonen
633.%A S. Lehtinen
Ben Lindstrom160ec622001-04-22 17:17:46 +0000634.%T "SSH File Transfer Protocol"
635.%N draft-ietf-secsh-filexfer-00.txt
636.%D January 2001
637.%O work in progress material
638.Re