blob: 722a3441994de8db5635ac691324026f81fe0ab8 [file] [log] [blame]
djm@openbsd.org60d8c842019-01-16 23:23:45 +00001.\" $OpenBSD: sftp.1,v 1.123 2019/01/16 23:23:45 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.org60d8c842019-01-16 23:23:45 +000025.Dd $Mdocdate: January 16 2019 $
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.
djm@openbsd.org60d8c842019-01-16 23:23:45 +0000319.It Xo Ic chgrp
320.Op Fl h
321.Ar grp
322.Ar path
323.Xc
Ben Lindstrom24643222001-06-25 05:08:11 +0000324Change group of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100325.Ar path
326to
Damien Miller33804262001-02-04 23:20:18 +1100327.Ar grp .
djm@openbsd.org60d8c842019-01-16 23:23:45 +0000328If the
329.Fl h
330flag is specified, then symlinks will not be followed.
Darren Tucker16e254d2004-12-06 22:46:45 +1100331.Ar path
332may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000333.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100334characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100335.Ar grp
Damien Millerd7686fd2001-02-10 00:40:03 +1100336must be a numeric GID.
djm@openbsd.org60d8c842019-01-16 23:23:45 +0000337.It Xo Ic chmod
338.Op Fl h
339.Ar mode
340.Ar path
341.Xc
Ben Lindstrom24643222001-06-25 05:08:11 +0000342Change permissions of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100343.Ar path
344to
345.Ar mode .
djm@openbsd.org60d8c842019-01-16 23:23:45 +0000346If the
347.Fl h
348flag is specified, then symlinks will not be followed.
Darren Tucker16e254d2004-12-06 22:46:45 +1100349.Ar path
350may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000351.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100352characters and may match multiple files.
djm@openbsd.org60d8c842019-01-16 23:23:45 +0000353.It Xo Ic chown
354.Op Fl h
355.Ar own
356.Ar path
357.Xc
Ben Lindstrom24643222001-06-25 05:08:11 +0000358Change owner of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100359.Ar path
360to
Damien Miller33804262001-02-04 23:20:18 +1100361.Ar own .
djm@openbsd.org60d8c842019-01-16 23:23:45 +0000362If the
363.Fl h
364flag is specified, then symlinks will not be followed.
Darren Tucker16e254d2004-12-06 22:46:45 +1100365.Ar path
366may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000367.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100368characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100369.Ar own
370must be a numeric UID.
Damien Millerd671e5a2008-05-19 14:53:33 +1000371.It Xo Ic df
372.Op Fl hi
373.Op Ar path
374.Xc
375Display usage information for the filesystem holding the current directory
376(or
377.Ar path
378if specified).
379If the
380.Fl h
381flag is specified, the capacity information will be displayed using
382"human-readable" suffixes.
383The
384.Fl i
385flag requests display of inode information in addition to capacity information.
386This command is only supported on servers that implement the
387.Dq statvfs@openssh.com
388extension.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000389.It Ic exit
Damien Miller50677922003-05-23 18:44:04 +1000390Quit
391.Nm sftp .
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000392.It Xo Ic get
Damien Millerf29238e2013-10-17 11:48:52 +1100393.Op Fl afPpr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000394.Ar remote-path
395.Op Ar local-path
396.Xc
Damien Miller33804262001-02-04 23:20:18 +1100397Retrieve the
Damien Millerd7686fd2001-02-10 00:40:03 +1100398.Ar remote-path
Damien Miller33804262001-02-04 23:20:18 +1100399and store it on the local machine.
400If the local
Ben Lindstrom24643222001-06-25 05:08:11 +0000401path name is not specified, it is given the same name it has on the
Damien Miller50677922003-05-23 18:44:04 +1000402remote machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100403.Ar remote-path
404may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000405.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100406characters and may match multiple files.
407If it does and
408.Ar local-path
409is specified, then
410.Ar local-path
411must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100412.Pp
Damien Miller0d032412013-07-25 11:56:52 +1000413If the
414.Fl a
415flag is specified, then attempt to resume partial transfers of existing files.
416Note that resumption assumes that any partial copy of the local file matches
417the remote copy.
Damien Millereec84062013-08-21 02:39:39 +1000418If the remote file contents differ from the partial local copy then the
419resultant file is likely to be corrupt.
Damien Miller0d032412013-07-25 11:56:52 +1000420.Pp
Damien Millerf29238e2013-10-17 11:48:52 +1100421If the
422.Fl f
423flag is specified, then
424.Xr fsync 2
Damien Miller1edcbf62013-10-18 10:17:17 +1100425will be called after the file transfer has completed to flush the file
Damien Millerf29238e2013-10-17 11:48:52 +1100426to disk.
427.Pp
Darren Tuckerb3b40a82009-10-07 08:39:09 +1100428If either the
Darren Tucker05016b22009-10-07 08:38:23 +1100429.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100430or
431.Fl p
Darren Tucker16e254d2004-12-06 22:46:45 +1100432flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000433copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100434.Pp
435If the
436.Fl r
437flag is specified then directories will be copied recursively.
438Note that
439.Nm
440does not follow symbolic links when performing recursive transfers.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000441.It Ic help
442Display help text.
djm@openbsd.org@openbsd.orgfbe8e7a2017-11-03 03:46:52 +0000443.It Ic lcd Op Ar path
Darren Tucker1f203942003-10-15 15:50:42 +1000444Change local directory to
445.Ar path .
djm@openbsd.org@openbsd.orgfbe8e7a2017-11-03 03:46:52 +0000446If
447.Ar path
448is not specified, then change directory to the local user's home directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100449.It Ic lls Op Ar ls-options Op Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000450Display local directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100451.Ar path
452or current directory if
453.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100454is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100455.Ar ls-options
456may contain any flags supported by the local system's
457.Xr ls 1
458command.
459.Ar path
460may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000461.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100462characters and may match multiple files.
Damien Millerd7686fd2001-02-10 00:40:03 +1100463.It Ic lmkdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100464Create local directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100465.Ar path .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100466.It Xo Ic ln
467.Op Fl s
468.Ar oldpath
469.Ar newpath
470.Xc
471Create a link from
Damien Miller058316f2001-03-08 10:08:49 +1100472.Ar oldpath
473to
474.Ar newpath .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100475If the
476.Fl s
477flag is specified the created link is a symbolic link, otherwise it is
478a hard link.
Damien Millerd7686fd2001-02-10 00:40:03 +1100479.It Ic lpwd
480Print local working directory.
Damien Millere1a49812002-09-12 09:54:25 +1000481.It Xo Ic ls
Darren Tucker75fe6262010-01-15 11:42:51 +1100482.Op Fl 1afhlnrSt
Damien Millere1a49812002-09-12 09:54:25 +1000483.Op Ar path
484.Xc
Darren Tucker16e254d2004-12-06 22:46:45 +1100485Display a remote directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100486.Ar path
Darren Tucker16e254d2004-12-06 22:46:45 +1100487or the current directory if
Damien Miller33804262001-02-04 23:20:18 +1100488.Ar path
Damien Miller50677922003-05-23 18:44:04 +1000489is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100490.Ar path
491may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000492.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100493characters and may match multiple files.
Darren Tucker15ca6e82004-06-22 13:08:21 +1000494.Pp
Darren Tucker16e254d2004-12-06 22:46:45 +1100495The following flags are recognized and alter the behaviour of
Darren Tucker15ca6e82004-06-22 13:08:21 +1000496.Ic ls
Darren Tucker16e254d2004-12-06 22:46:45 +1100497accordingly:
498.Bl -tag -width Ds
499.It Fl 1
500Produce single columnar output.
501.It Fl a
502List files beginning with a dot
503.Pq Sq \&. .
504.It Fl f
505Do not sort the listing.
506The default sort order is lexicographical.
Darren Tucker2901e2d2010-01-13 22:44:06 +1100507.It Fl h
508When used with a long format option, use unit suffixes: Byte, Kilobyte,
509Megabyte, Gigabyte, Terabyte, Petabyte, and Exabyte in order to reduce
510the number of digits to four or fewer using powers of 2 for sizes (K=1024,
511M=1048576, etc.).
Darren Tucker75fe6262010-01-15 11:42:51 +1100512.It Fl l
513Display additional details including permissions
514and ownership information.
Darren Tucker16e254d2004-12-06 22:46:45 +1100515.It Fl n
516Produce a long listing with user and group information presented
517numerically.
518.It Fl r
519Reverse the sort order of the listing.
520.It Fl S
521Sort the listing by file size.
522.It Fl t
523Sort the listing by last modification time.
524.El
Damien Millerd7686fd2001-02-10 00:40:03 +1100525.It Ic lumask Ar umask
Ben Lindstrom24643222001-06-25 05:08:11 +0000526Set local umask to
Damien Millerd7686fd2001-02-10 00:40:03 +1100527.Ar umask .
528.It Ic mkdir Ar path
529Create remote directory specified by
530.Ar path .
Damien Miller62d57f62003-01-10 21:43:24 +1100531.It Ic progress
532Toggle display of progress meter.
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000533.It Xo Ic put
Damien Millerd875ff72014-05-15 13:47:15 +1000534.Op Fl afPpr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000535.Ar local-path
Ben Lindstromd5767812002-12-23 02:23:37 +0000536.Op Ar remote-path
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000537.Xc
Damien Miller33804262001-02-04 23:20:18 +1100538Upload
Damien Millerd7686fd2001-02-10 00:40:03 +1100539.Ar local-path
Damien Miller50677922003-05-23 18:44:04 +1000540and store it on the remote machine.
541If the remote path name is not specified, it is given the same name it has
542on the local machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100543.Ar local-path
544may contain
kn@openbsd.orgddf1b792018-07-23 19:02:49 +0000545.Xr glob 7
Darren Tucker16e254d2004-12-06 22:46:45 +1100546characters and may match multiple files.
547If it does and
548.Ar remote-path
549is specified, then
550.Ar remote-path
551must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100552.Pp
Damien Millerf29238e2013-10-17 11:48:52 +1100553If the
Damien Miller798a0252014-05-15 13:47:37 +1000554.Fl a
Damien Millerd875ff72014-05-15 13:47:15 +1000555flag is specified, then attempt to resume partial
556transfers of existing files.
Damien Miller798a0252014-05-15 13:47:37 +1000557Note that resumption assumes that any partial copy of the remote file
Damien Millerd875ff72014-05-15 13:47:15 +1000558matches the local copy.
559If the local file contents differ from the remote local copy then
560the resultant file is likely to be corrupt.
561.Pp
562If the
Damien Millerf29238e2013-10-17 11:48:52 +1100563.Fl f
564flag is specified, then a request will be sent to the server to call
565.Xr fsync 2
566after the file has been transferred.
567Note that this is only supported by servers that implement
568the "fsync@openssh.com" extension.
569.Pp
Darren Tuckerddccfb42011-08-07 23:12:26 +1000570If either the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000571.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100572or
573.Fl p
574flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000575copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100576.Pp
577If the
578.Fl r
579flag is specified then directories will be copied recursively.
580Note that
581.Nm
582does not follow symbolic links when performing recursive transfers.
Damien Millerd7686fd2001-02-10 00:40:03 +1100583.It Ic pwd
584Display remote working directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100585.It Ic quit
Damien Miller50677922003-05-23 18:44:04 +1000586Quit
587.Nm sftp .
Damien Miller0d032412013-07-25 11:56:52 +1000588.It Xo Ic reget
589.Op Fl Ppr
590.Ar remote-path
591.Op Ar local-path
592.Xc
593Resume download of
594.Ar remote-path .
595Equivalent to
596.Ic get
597with the
598.Fl a
599flag set.
Damien Millerd875ff72014-05-15 13:47:15 +1000600.It Xo Ic reput
601.Op Fl Ppr
602.Op Ar local-path
603.Ar remote-path
604.Xc
605Resume upload of
606.Op Ar local-path .
607Equivalent to
608.Ic put
Damien Miller798a0252014-05-15 13:47:37 +1000609with the
Damien Millerd875ff72014-05-15 13:47:15 +1000610.Fl a
611flag set.
Damien Millerd7686fd2001-02-10 00:40:03 +1100612.It Ic rename Ar oldpath Ar newpath
Damien Miller33804262001-02-04 23:20:18 +1100613Rename remote file from
614.Ar oldpath
615to
Damien Millerd7686fd2001-02-10 00:40:03 +1100616.Ar newpath .
Damien Millerd7686fd2001-02-10 00:40:03 +1100617.It Ic rm Ar path
Damien Miller33804262001-02-04 23:20:18 +1100618Delete remote file specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100619.Ar path .
Darren Tucker1f203942003-10-15 15:50:42 +1000620.It Ic rmdir Ar path
621Remove remote directory specified by
622.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100623.It Ic symlink Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000624Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100625.Ar oldpath
626to
627.Ar newpath .
Damien Miller63421802003-01-08 14:05:23 +1100628.It Ic version
629Display the
630.Nm
631protocol version.
Damien Miller62fd18a2009-01-28 16:14:09 +1100632.It Ic \&! Ns Ar command
Ben Lindstrom24643222001-06-25 05:08:11 +0000633Execute
Damien Miller33804262001-02-04 23:20:18 +1100634.Ar command
Damien Millerd7686fd2001-02-10 00:40:03 +1100635in local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000636.It Ic \&!
Damien Millerd7686fd2001-02-10 00:40:03 +1100637Escape to local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000638.It Ic \&?
Damien Millerd7686fd2001-02-10 00:40:03 +1100639Synonym for help.
640.El
Damien Miller33804262001-02-04 23:20:18 +1100641.Sh SEE ALSO
Darren Tucker1f203942003-10-15 15:50:42 +1000642.Xr ftp 1 ,
Darren Tucker16e254d2004-12-06 22:46:45 +1100643.Xr ls 1 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000644.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +1100645.Xr ssh 1 ,
646.Xr ssh-add 1 ,
647.Xr ssh-keygen 1 ,
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000648.Xr ssh_config 5 ,
jmc@openbsd.orge2127ab2018-07-23 19:53:55 +0000649.Xr glob 7 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000650.Xr sftp-server 8 ,
651.Xr sshd 8
652.Rs
Ben Lindstrom90fd0602001-06-25 04:45:33 +0000653.%A T. Ylonen
654.%A S. Lehtinen
Ben Lindstrom160ec622001-04-22 17:17:46 +0000655.%T "SSH File Transfer Protocol"
656.%N draft-ietf-secsh-filexfer-00.txt
657.%D January 2001
658.%O work in progress material
659.Re