blob: bcb4721449f83721040bc4bb7d39af64dad2f51f [file] [log] [blame]
Damien Millere5777722011-09-22 21:34:15 +10001.\" $OpenBSD: sftp.1,v 1.91 2011/09/05 05:56:13 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.\"
Damien Millere5777722011-09-22 21:34:15 +100025.Dd $Mdocdate: September 5 2011 $
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
Damien Miller495dca32003-04-01 21:42:14 +100033.Bk -words
Darren Tucker1b0dd172009-10-07 08:37:48 +110034.Op Fl 1246Cpqrv
Damien Miller81b6e782002-02-08 22:06:03 +110035.Op Fl B Ar buffer_size
Darren Tucker1f203942003-10-15 15:50:42 +100036.Op Fl b Ar batchfile
Darren Tucker46bbbe32009-10-07 08:21:48 +110037.Op Fl c Ar cipher
Darren Tucker282b4022009-10-07 08:23:06 +110038.Op Fl D Ar sftp_server_path
Damien Miller81b6e782002-02-08 22:06:03 +110039.Op Fl F Ar ssh_config
Darren Tuckerc07138e2009-10-07 08:23:44 +110040.Op Fl i Ar identity_file
Damien Miller65e42f82010-09-24 22:15:11 +100041.Op Fl l Ar limit
Darren Tucker1f203942003-10-15 15:50:42 +100042.Op Fl o Ar ssh_option
Darren Tucker282b4022009-10-07 08:23:06 +110043.Op Fl P Ar port
Damien Miller16a13332002-02-13 14:03:56 +110044.Op Fl R Ar num_requests
Ben Lindstrom6a337632001-09-18 05:47:32 +000045.Op Fl S Ar program
Darren Tucker1f203942003-10-15 15:50:42 +100046.Op Fl s Ar subsystem | sftp_server
Ben Lindstrom6a337632001-09-18 05:47:32 +000047.Ar host
Damien Miller495dca32003-04-01 21:42:14 +100048.Ek
Damien Millerd6ead282003-05-14 19:30:38 +100049.Nm sftp
Damien Miller7ebfad72008-12-09 14:12:33 +110050.Oo Ar user Ns @ Oc Ns
51.Ar host Ns Op : Ns Ar
Damien Millerd6ead282003-05-14 19:30:38 +100052.Nm sftp
Damien Miller881adf72010-09-24 22:01:54 +100053.Oo
54.Ar user Ns @ Oc Ns
Damien Miller495dca32003-04-01 21:42:14 +100055.Ar host Ns Oo : Ns Ar dir Ns
Damien Miller881adf72010-09-24 22:01:54 +100056.Op Ar /
57.Oc
Damien Millerd6ead282003-05-14 19:30:38 +100058.Nm sftp
Damien Millerfb7508e2003-05-14 13:47:07 +100059.Fl b Ar batchfile
Damien Millerc2b98272003-09-03 12:13:30 +100060.Oo Ar user Ns @ Oc Ns Ar host
Damien Miller33804262001-02-04 23:20:18 +110061.Sh DESCRIPTION
62.Nm
63is an interactive file transfer program, similar to
64.Xr ftp 1 ,
65which performs all operations over an encrypted
66.Xr ssh 1
67transport.
68It may also use many features of ssh, such as public key authentication and
69compression.
70.Nm
71connects and logs into the specified
Ben Lindstromaafff9c2001-05-06 03:01:02 +000072.Ar host ,
Damien Miller33804262001-02-04 23:20:18 +110073then enters an interactive command mode.
74.Pp
Ben Lindstrom24643222001-06-25 05:08:11 +000075The second usage format will retrieve files automatically if a non-interactive
Ben Lindstromaafff9c2001-05-06 03:01:02 +000076authentication method is used; otherwise it will do so after
77successful interactive authentication.
Ben Lindstrom63667f62001-04-13 00:00:14 +000078.Pp
Darren Tucker16e254d2004-12-06 22:46:45 +110079The third usage format allows
80.Nm
81to start in a remote directory.
Ben Lindstrom63667f62001-04-13 00:00:14 +000082.Pp
Damien Miller50677922003-05-23 18:44:04 +100083The final usage format allows for automated sessions using the
Damien Millerfb7508e2003-05-14 13:47:07 +100084.Fl b
Damien Miller50677922003-05-23 18:44:04 +100085option.
Damien Miller134eb812005-12-31 16:22:55 +110086In such cases, it is necessary to configure non-interactive authentication
Damien Miller50677922003-05-23 18:44:04 +100087to obviate the need to enter a password at connection time (see
Damien Millerfb7508e2003-05-14 13:47:07 +100088.Xr sshd 8
Damien Millerd6ead282003-05-14 19:30:38 +100089and
Damien Millerfb7508e2003-05-14 13:47:07 +100090.Xr ssh-keygen 1
Damien Miller50677922003-05-23 18:44:04 +100091for details).
Damien Miller58a77e22011-05-15 08:36:29 +100092.Pp
93Since some usage formats use colon characters to delimit host names from path
94names, IPv6 addresses must be enclosed in square brackets to avoid ambiguity.
95.Pp
Damien Miller33804262001-02-04 23:20:18 +110096The options are as follows:
97.Bl -tag -width Ds
Darren Tucker1f203942003-10-15 15:50:42 +100098.It Fl 1
99Specify the use of protocol version 1.
Darren Tucker46bbbe32009-10-07 08:21:48 +1100100.It Fl 2
101Specify the use of protocol version 2.
102.It Fl 4
103Forces
104.Nm
105to use IPv4 addresses only.
106.It Fl 6
107Forces
108.Nm
109to use IPv6 addresses only.
Darren Tucker1f203942003-10-15 15:50:42 +1000110.It Fl B Ar buffer_size
111Specify the size of the buffer that
112.Nm
113uses when transferring files.
114Larger buffers require fewer round trips at the cost of higher
115memory consumption.
116The default is 32768 bytes.
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000117.It Fl b Ar batchfile
118Batch mode reads a series of commands from an input
Ben Lindstrom283cb822001-03-09 00:09:02 +0000119.Ar batchfile
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000120instead of
Ben Lindstrom283cb822001-03-09 00:09:02 +0000121.Em stdin .
122Since it lacks user interaction it should be used in conjunction with
Damien Miller86a39682004-01-21 11:00:04 +1100123non-interactive authentication.
Damien Miller44f75c12004-01-21 10:58:47 +1100124A
Damien Miller86a39682004-01-21 11:00:04 +1100125.Ar batchfile
126of
127.Sq \-
Damien Miller44f75c12004-01-21 10:58:47 +1100128may be used to indicate standard input.
Ben Lindstrom283cb822001-03-09 00:09:02 +0000129.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000130will abort if any of the following
131commands fail:
Ben Lindstrom3612bda2002-03-05 01:26:38 +0000132.Ic get , put , rename , ln ,
Damien Miller495dca32003-04-01 21:42:14 +1000133.Ic rm , mkdir , chdir , ls ,
Damien Miller64058cb2008-05-19 14:54:25 +1000134.Ic lchdir , chmod , chown ,
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100135.Ic chgrp , lpwd , df , symlink ,
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000136and
Ben Lindstrom283cb822001-03-09 00:09:02 +0000137.Ic lmkdir .
Damien Miller495dca32003-04-01 21:42:14 +1000138Termination on error can be suppressed on a command by command basis by
139prefixing the command with a
Damien Miller86a39682004-01-21 11:00:04 +1100140.Sq \-
Damien Miller50677922003-05-23 18:44:04 +1000141character (for example,
142.Ic -rm /tmp/blah* ) .
Darren Tucker1f203942003-10-15 15:50:42 +1000143.It Fl C
144Enables compression (via ssh's
145.Fl C
146flag).
Darren Tuckeradba1ba2009-10-07 08:22:20 +1100147.It Fl c Ar cipher
148Selects the cipher to use for encrypting the data transfers.
149This option is directly passed to
150.Xr ssh 1 .
Darren Tucker282b4022009-10-07 08:23:06 +1100151.It Fl D Ar sftp_server_path
152Connect directly to a local sftp server
153(rather than via
154.Xr ssh 1 ) .
155This option may be useful in debugging the client and server.
Darren Tucker1f203942003-10-15 15:50:42 +1000156.It Fl F Ar ssh_config
157Specifies an alternative
158per-user configuration file for
159.Xr ssh 1 .
160This option is directly passed to
161.Xr ssh 1 .
Darren Tucker46bbbe32009-10-07 08:21:48 +1100162.It Fl i Ar identity_file
163Selects the file from which the identity (private key) for public key
164authentication is read.
165This option is directly passed to
166.Xr ssh 1 .
Damien Miller65e42f82010-09-24 22:15:11 +1000167.It Fl l Ar limit
168Limits the used bandwidth, specified in Kbit/s.
Damien Miller33804262001-02-04 23:20:18 +1100169.It Fl o Ar ssh_option
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000170Can be used to pass options to
171.Nm ssh
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000172in the format used in
173.Xr ssh_config 5 .
174This is useful for specifying options
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000175for which there is no separate
176.Nm sftp
Damien Miller50677922003-05-23 18:44:04 +1000177command-line flag.
178For example, to specify an alternate port use:
Ben Lindstrom6a337632001-09-18 05:47:32 +0000179.Ic sftp -oPort=24 .
Darren Tucker1f203942003-10-15 15:50:42 +1000180For full details of the options listed below, and their possible values, see
181.Xr ssh_config 5 .
182.Pp
183.Bl -tag -width Ds -offset indent -compact
184.It AddressFamily
185.It BatchMode
186.It BindAddress
187.It ChallengeResponseAuthentication
188.It CheckHostIP
189.It Cipher
190.It Ciphers
Darren Tucker1f203942003-10-15 15:50:42 +1000191.It Compression
192.It CompressionLevel
193.It ConnectionAttempts
Darren Tucker3d5cbb72004-05-03 09:13:15 +1000194.It ConnectTimeout
Damien Miller0e220db2004-06-15 10:34:08 +1000195.It ControlMaster
196.It ControlPath
Damien Millere5777722011-09-22 21:34:15 +1000197.It ControlPersist
Darren Tucker1f203942003-10-15 15:50:42 +1000198.It GlobalKnownHostsFile
199.It GSSAPIAuthentication
200.It GSSAPIDelegateCredentials
Damien Miller27e9c512005-03-02 12:04:16 +1100201.It HashKnownHosts
Darren Tucker1f203942003-10-15 15:50:42 +1000202.It Host
203.It HostbasedAuthentication
204.It HostKeyAlgorithms
205.It HostKeyAlias
206.It HostName
207.It IdentityFile
Damien Millerbd394c32004-03-08 23:12:36 +1100208.It IdentitiesOnly
Damien Miller0a184732010-11-20 15:21:03 +1100209.It IPQoS
Damien Millere5777722011-09-22 21:34:15 +1000210.It KbdInteractiveAuthentication
Darren Tucker636ca902004-11-05 20:22:00 +1100211.It KbdInteractiveDevices
Damien Miller2beb32f2010-09-24 22:16:03 +1000212.It KexAlgorithms
Darren Tucker1f203942003-10-15 15:50:42 +1000213.It LogLevel
214.It MACs
215.It NoHostAuthenticationForLocalhost
216.It NumberOfPasswordPrompts
217.It PasswordAuthentication
Damien Miller7ea845e2010-02-12 09:21:02 +1100218.It PKCS11Provider
Darren Tucker1f203942003-10-15 15:50:42 +1000219.It Port
220.It PreferredAuthentications
221.It Protocol
222.It ProxyCommand
223.It PubkeyAuthentication
Darren Tucker62388b22006-01-20 11:31:47 +1100224.It RekeyLimit
Darren Tucker1f203942003-10-15 15:50:42 +1000225.It RhostsRSAAuthentication
226.It RSAAuthentication
Darren Tucker7a6c0662004-05-02 22:14:03 +1000227.It SendEnv
Damien Miller509b0102003-12-17 16:33:10 +1100228.It ServerAliveInterval
229.It ServerAliveCountMax
Darren Tucker1f203942003-10-15 15:50:42 +1000230.It StrictHostKeyChecking
Damien Miller12c150e2003-12-17 16:31:10 +1100231.It TCPKeepAlive
Darren Tucker1f203942003-10-15 15:50:42 +1000232.It UsePrivilegedPort
233.It User
234.It UserKnownHostsFile
235.It VerifyHostKeyDNS
Darren Tucker1f203942003-10-15 15:50:42 +1000236.El
Darren Tucker282b4022009-10-07 08:23:06 +1100237.It Fl P Ar port
238Specifies the port to connect to on the remote host.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100239.It Fl p
240Preserves modification times, access times, and modes from the
241original files transferred.
Darren Tucker46bbbe32009-10-07 08:21:48 +1100242.It Fl q
243Quiet mode: disables the progress meter as well as warning and
244diagnostic messages from
245.Xr ssh 1 .
Damien Miller16a13332002-02-13 14:03:56 +1100246.It Fl R Ar num_requests
Damien Miller50677922003-05-23 18:44:04 +1000247Specify how many requests may be outstanding at any one time.
248Increasing this may slightly improve file transfer speed
249but will increase memory usage.
Damien Miller94717b02008-07-16 21:17:23 +1000250The default is 64 outstanding requests.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100251.It Fl r
252Recursively copy entire directories when uploading and downloading.
253Note that
254.Nm
255does not follow symbolic links encountered in the tree traversal.
Ben Lindstrom6a337632001-09-18 05:47:32 +0000256.It Fl S Ar program
257Name of the
258.Ar program
259to use for the encrypted connection.
260The program must understand
261.Xr ssh 1
262options.
Darren Tucker1f203942003-10-15 15:50:42 +1000263.It Fl s Ar subsystem | sftp_server
264Specifies the SSH2 subsystem or the path for an sftp server
265on the remote host.
266A path is useful for using
267.Nm
268over protocol version 1, or when the remote
269.Xr sshd 8
270does not have an sftp subsystem configured.
271.It Fl v
272Raise logging level.
273This option is also passed to ssh.
Damien Miller33804262001-02-04 23:20:18 +1100274.El
275.Sh INTERACTIVE COMMANDS
Damien Millerd7686fd2001-02-10 00:40:03 +1100276Once in interactive mode,
277.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000278understands a set of commands similar to those of
Damien Miller33804262001-02-04 23:20:18 +1100279.Xr ftp 1 .
Darren Tucker16e254d2004-12-06 22:46:45 +1100280Commands are case insensitive.
281Pathnames that contain spaces must be enclosed in quotes.
282Any special characters contained within pathnames that are recognized by
283.Xr glob 3
284must be escaped with backslashes
285.Pq Sq \e .
286.Bl -tag -width Ds
Ben Lindstrom59e12492001-08-15 23:22:56 +0000287.It Ic bye
Damien Miller50677922003-05-23 18:44:04 +1000288Quit
289.Nm sftp .
Damien Millerd7686fd2001-02-10 00:40:03 +1100290.It Ic cd Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000291Change remote directory to
Damien Millerd7686fd2001-02-10 00:40:03 +1100292.Ar path .
Damien Millerd7686fd2001-02-10 00:40:03 +1100293.It Ic chgrp Ar grp Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000294Change group of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100295.Ar path
296to
Damien Miller33804262001-02-04 23:20:18 +1100297.Ar grp .
Darren Tucker16e254d2004-12-06 22:46:45 +1100298.Ar path
299may contain
300.Xr glob 3
301characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100302.Ar grp
Damien Millerd7686fd2001-02-10 00:40:03 +1100303must be a numeric GID.
304.It Ic chmod Ar mode Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000305Change permissions of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100306.Ar path
307to
308.Ar mode .
Darren Tucker16e254d2004-12-06 22:46:45 +1100309.Ar path
310may contain
311.Xr glob 3
312characters and may match multiple files.
Damien Millerd7686fd2001-02-10 00:40:03 +1100313.It Ic chown Ar own Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000314Change owner of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100315.Ar path
316to
Damien Miller33804262001-02-04 23:20:18 +1100317.Ar own .
Darren Tucker16e254d2004-12-06 22:46:45 +1100318.Ar path
319may contain
320.Xr glob 3
321characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100322.Ar own
323must be a numeric UID.
Damien Millerd671e5a2008-05-19 14:53:33 +1000324.It Xo Ic df
325.Op Fl hi
326.Op Ar path
327.Xc
328Display usage information for the filesystem holding the current directory
329(or
330.Ar path
331if specified).
332If the
333.Fl h
334flag is specified, the capacity information will be displayed using
335"human-readable" suffixes.
336The
337.Fl i
338flag requests display of inode information in addition to capacity information.
339This command is only supported on servers that implement the
340.Dq statvfs@openssh.com
341extension.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000342.It Ic exit
Damien Miller50677922003-05-23 18:44:04 +1000343Quit
344.Nm sftp .
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000345.It Xo Ic get
Darren Tucker1b0dd172009-10-07 08:37:48 +1100346.Op Fl Ppr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000347.Ar remote-path
348.Op Ar local-path
349.Xc
Damien Miller33804262001-02-04 23:20:18 +1100350Retrieve the
Damien Millerd7686fd2001-02-10 00:40:03 +1100351.Ar remote-path
Damien Miller33804262001-02-04 23:20:18 +1100352and store it on the local machine.
353If the local
Ben Lindstrom24643222001-06-25 05:08:11 +0000354path name is not specified, it is given the same name it has on the
Damien Miller50677922003-05-23 18:44:04 +1000355remote machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100356.Ar remote-path
357may contain
358.Xr glob 3
359characters and may match multiple files.
360If it does and
361.Ar local-path
362is specified, then
363.Ar local-path
364must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100365.Pp
Darren Tuckerb3b40a82009-10-07 08:39:09 +1100366If either the
Darren Tucker05016b22009-10-07 08:38:23 +1100367.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100368or
369.Fl p
Darren Tucker16e254d2004-12-06 22:46:45 +1100370flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000371copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100372.Pp
373If the
374.Fl r
375flag is specified then directories will be copied recursively.
376Note that
377.Nm
378does not follow symbolic links when performing recursive transfers.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000379.It Ic help
380Display help text.
Darren Tucker1f203942003-10-15 15:50:42 +1000381.It Ic lcd Ar path
382Change local directory to
383.Ar path .
Damien Millerd7686fd2001-02-10 00:40:03 +1100384.It Ic lls Op Ar ls-options Op Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000385Display local directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100386.Ar path
387or current directory if
388.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100389is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100390.Ar ls-options
391may contain any flags supported by the local system's
392.Xr ls 1
393command.
394.Ar path
395may contain
396.Xr glob 3
397characters and may match multiple files.
Damien Millerd7686fd2001-02-10 00:40:03 +1100398.It Ic lmkdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100399Create local directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100400.Ar path .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100401.It Xo Ic ln
402.Op Fl s
403.Ar oldpath
404.Ar newpath
405.Xc
406Create a link from
Damien Miller058316f2001-03-08 10:08:49 +1100407.Ar oldpath
408to
409.Ar newpath .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100410If the
411.Fl s
412flag is specified the created link is a symbolic link, otherwise it is
413a hard link.
Damien Millerd7686fd2001-02-10 00:40:03 +1100414.It Ic lpwd
415Print local working directory.
Damien Millere1a49812002-09-12 09:54:25 +1000416.It Xo Ic ls
Darren Tucker75fe6262010-01-15 11:42:51 +1100417.Op Fl 1afhlnrSt
Damien Millere1a49812002-09-12 09:54:25 +1000418.Op Ar path
419.Xc
Darren Tucker16e254d2004-12-06 22:46:45 +1100420Display a remote directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100421.Ar path
Darren Tucker16e254d2004-12-06 22:46:45 +1100422or the current directory if
Damien Miller33804262001-02-04 23:20:18 +1100423.Ar path
Damien Miller50677922003-05-23 18:44:04 +1000424is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100425.Ar path
426may contain
427.Xr glob 3
428characters and may match multiple files.
Darren Tucker15ca6e82004-06-22 13:08:21 +1000429.Pp
Darren Tucker16e254d2004-12-06 22:46:45 +1100430The following flags are recognized and alter the behaviour of
Darren Tucker15ca6e82004-06-22 13:08:21 +1000431.Ic ls
Darren Tucker16e254d2004-12-06 22:46:45 +1100432accordingly:
433.Bl -tag -width Ds
434.It Fl 1
435Produce single columnar output.
436.It Fl a
437List files beginning with a dot
438.Pq Sq \&. .
439.It Fl f
440Do not sort the listing.
441The default sort order is lexicographical.
Darren Tucker2901e2d2010-01-13 22:44:06 +1100442.It Fl h
443When used with a long format option, use unit suffixes: Byte, Kilobyte,
444Megabyte, Gigabyte, Terabyte, Petabyte, and Exabyte in order to reduce
445the number of digits to four or fewer using powers of 2 for sizes (K=1024,
446M=1048576, etc.).
Darren Tucker75fe6262010-01-15 11:42:51 +1100447.It Fl l
448Display additional details including permissions
449and ownership information.
Darren Tucker16e254d2004-12-06 22:46:45 +1100450.It Fl n
451Produce a long listing with user and group information presented
452numerically.
453.It Fl r
454Reverse the sort order of the listing.
455.It Fl S
456Sort the listing by file size.
457.It Fl t
458Sort the listing by last modification time.
459.El
Damien Millerd7686fd2001-02-10 00:40:03 +1100460.It Ic lumask Ar umask
Ben Lindstrom24643222001-06-25 05:08:11 +0000461Set local umask to
Damien Millerd7686fd2001-02-10 00:40:03 +1100462.Ar umask .
463.It Ic mkdir Ar path
464Create remote directory specified by
465.Ar path .
Damien Miller62d57f62003-01-10 21:43:24 +1100466.It Ic progress
467Toggle display of progress meter.
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000468.It Xo Ic put
Darren Tucker05016b22009-10-07 08:38:23 +1100469.Op Fl Ppr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000470.Ar local-path
Ben Lindstromd5767812002-12-23 02:23:37 +0000471.Op Ar remote-path
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000472.Xc
Damien Miller33804262001-02-04 23:20:18 +1100473Upload
Damien Millerd7686fd2001-02-10 00:40:03 +1100474.Ar local-path
Damien Miller50677922003-05-23 18:44:04 +1000475and store it on the remote machine.
476If the remote path name is not specified, it is given the same name it has
477on the local machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100478.Ar local-path
479may contain
480.Xr glob 3
481characters and may match multiple files.
482If it does and
483.Ar remote-path
484is specified, then
485.Ar remote-path
486must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100487.Pp
Darren Tuckerddccfb42011-08-07 23:12:26 +1000488If either the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000489.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100490or
491.Fl p
492flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000493copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100494.Pp
495If the
496.Fl r
497flag is specified then directories will be copied recursively.
498Note that
499.Nm
500does not follow symbolic links when performing recursive transfers.
Damien Millerd7686fd2001-02-10 00:40:03 +1100501.It Ic pwd
502Display remote working directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100503.It Ic quit
Damien Miller50677922003-05-23 18:44:04 +1000504Quit
505.Nm sftp .
Damien Millerd7686fd2001-02-10 00:40:03 +1100506.It Ic rename Ar oldpath Ar newpath
Damien Miller33804262001-02-04 23:20:18 +1100507Rename remote file from
508.Ar oldpath
509to
Damien Millerd7686fd2001-02-10 00:40:03 +1100510.Ar newpath .
Damien Millerd7686fd2001-02-10 00:40:03 +1100511.It Ic rm Ar path
Damien Miller33804262001-02-04 23:20:18 +1100512Delete remote file specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100513.Ar path .
Darren Tucker1f203942003-10-15 15:50:42 +1000514.It Ic rmdir Ar path
515Remove remote directory specified by
516.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100517.It Ic symlink Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000518Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100519.Ar oldpath
520to
521.Ar newpath .
Damien Miller63421802003-01-08 14:05:23 +1100522.It Ic version
523Display the
524.Nm
525protocol version.
Damien Miller62fd18a2009-01-28 16:14:09 +1100526.It Ic \&! Ns Ar command
Ben Lindstrom24643222001-06-25 05:08:11 +0000527Execute
Damien Miller33804262001-02-04 23:20:18 +1100528.Ar command
Damien Millerd7686fd2001-02-10 00:40:03 +1100529in local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000530.It Ic \&!
Damien Millerd7686fd2001-02-10 00:40:03 +1100531Escape to local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000532.It Ic \&?
Damien Millerd7686fd2001-02-10 00:40:03 +1100533Synonym for help.
534.El
Damien Miller33804262001-02-04 23:20:18 +1100535.Sh SEE ALSO
Darren Tucker1f203942003-10-15 15:50:42 +1000536.Xr ftp 1 ,
Darren Tucker16e254d2004-12-06 22:46:45 +1100537.Xr ls 1 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000538.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +1100539.Xr ssh 1 ,
540.Xr ssh-add 1 ,
541.Xr ssh-keygen 1 ,
Darren Tucker16e254d2004-12-06 22:46:45 +1100542.Xr glob 3 ,
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000543.Xr ssh_config 5 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000544.Xr sftp-server 8 ,
545.Xr sshd 8
546.Rs
Ben Lindstrom90fd0602001-06-25 04:45:33 +0000547.%A T. Ylonen
548.%A S. Lehtinen
Ben Lindstrom160ec622001-04-22 17:17:46 +0000549.%T "SSH File Transfer Protocol"
550.%N draft-ietf-secsh-filexfer-00.txt
551.%D January 2001
552.%O work in progress material
553.Re