blob: 89b5d3544dd7b19e0e6373e83f7395ecb395bdda [file] [log] [blame]
Darren Tuckeraf1f9092010-12-05 09:02:47 +11001.\" $OpenBSD: sftp.1,v 1.88 2010/12/04 00:18:01 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.\"
Darren Tuckeraf1f9092010-12-05 09:02:47 +110025.Dd $Mdocdate: December 4 2010 $
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 Miller33804262001-02-04 23:20:18 +110092The options are as follows:
93.Bl -tag -width Ds
Darren Tucker1f203942003-10-15 15:50:42 +100094.It Fl 1
95Specify the use of protocol version 1.
Darren Tucker46bbbe32009-10-07 08:21:48 +110096.It Fl 2
97Specify the use of protocol version 2.
98.It Fl 4
99Forces
100.Nm
101to use IPv4 addresses only.
102.It Fl 6
103Forces
104.Nm
105to use IPv6 addresses only.
Darren Tucker1f203942003-10-15 15:50:42 +1000106.It Fl B Ar buffer_size
107Specify the size of the buffer that
108.Nm
109uses when transferring files.
110Larger buffers require fewer round trips at the cost of higher
111memory consumption.
112The default is 32768 bytes.
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000113.It Fl b Ar batchfile
114Batch mode reads a series of commands from an input
Ben Lindstrom283cb822001-03-09 00:09:02 +0000115.Ar batchfile
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000116instead of
Ben Lindstrom283cb822001-03-09 00:09:02 +0000117.Em stdin .
118Since it lacks user interaction it should be used in conjunction with
Damien Miller86a39682004-01-21 11:00:04 +1100119non-interactive authentication.
Damien Miller44f75c12004-01-21 10:58:47 +1100120A
Damien Miller86a39682004-01-21 11:00:04 +1100121.Ar batchfile
122of
123.Sq \-
Damien Miller44f75c12004-01-21 10:58:47 +1100124may be used to indicate standard input.
Ben Lindstrom283cb822001-03-09 00:09:02 +0000125.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000126will abort if any of the following
127commands fail:
Ben Lindstrom3612bda2002-03-05 01:26:38 +0000128.Ic get , put , rename , ln ,
Damien Miller495dca32003-04-01 21:42:14 +1000129.Ic rm , mkdir , chdir , ls ,
Damien Miller64058cb2008-05-19 14:54:25 +1000130.Ic lchdir , chmod , chown ,
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100131.Ic chgrp , lpwd , df , symlink ,
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000132and
Ben Lindstrom283cb822001-03-09 00:09:02 +0000133.Ic lmkdir .
Damien Miller495dca32003-04-01 21:42:14 +1000134Termination on error can be suppressed on a command by command basis by
135prefixing the command with a
Damien Miller86a39682004-01-21 11:00:04 +1100136.Sq \-
Damien Miller50677922003-05-23 18:44:04 +1000137character (for example,
138.Ic -rm /tmp/blah* ) .
Darren Tucker1f203942003-10-15 15:50:42 +1000139.It Fl C
140Enables compression (via ssh's
141.Fl C
142flag).
Darren Tuckeradba1ba2009-10-07 08:22:20 +1100143.It Fl c Ar cipher
144Selects the cipher to use for encrypting the data transfers.
145This option is directly passed to
146.Xr ssh 1 .
Darren Tucker282b4022009-10-07 08:23:06 +1100147.It Fl D Ar sftp_server_path
148Connect directly to a local sftp server
149(rather than via
150.Xr ssh 1 ) .
151This option may be useful in debugging the client and server.
Darren Tucker1f203942003-10-15 15:50:42 +1000152.It Fl F Ar ssh_config
153Specifies an alternative
154per-user configuration file for
155.Xr ssh 1 .
156This option is directly passed to
157.Xr ssh 1 .
Darren Tucker46bbbe32009-10-07 08:21:48 +1100158.It Fl i Ar identity_file
159Selects the file from which the identity (private key) for public key
160authentication is read.
161This option is directly passed to
162.Xr ssh 1 .
Damien Miller65e42f82010-09-24 22:15:11 +1000163.It Fl l Ar limit
164Limits the used bandwidth, specified in Kbit/s.
Damien Miller33804262001-02-04 23:20:18 +1100165.It Fl o Ar ssh_option
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000166Can be used to pass options to
167.Nm ssh
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000168in the format used in
169.Xr ssh_config 5 .
170This is useful for specifying options
Ben Lindstrom14c62eb2001-08-15 23:25:46 +0000171for which there is no separate
172.Nm sftp
Damien Miller50677922003-05-23 18:44:04 +1000173command-line flag.
174For example, to specify an alternate port use:
Ben Lindstrom6a337632001-09-18 05:47:32 +0000175.Ic sftp -oPort=24 .
Darren Tucker1f203942003-10-15 15:50:42 +1000176For full details of the options listed below, and their possible values, see
177.Xr ssh_config 5 .
178.Pp
179.Bl -tag -width Ds -offset indent -compact
180.It AddressFamily
181.It BatchMode
182.It BindAddress
183.It ChallengeResponseAuthentication
184.It CheckHostIP
185.It Cipher
186.It Ciphers
Darren Tucker1f203942003-10-15 15:50:42 +1000187.It Compression
188.It CompressionLevel
189.It ConnectionAttempts
Darren Tucker3d5cbb72004-05-03 09:13:15 +1000190.It ConnectTimeout
Damien Miller0e220db2004-06-15 10:34:08 +1000191.It ControlMaster
192.It ControlPath
Darren Tucker1f203942003-10-15 15:50:42 +1000193.It GlobalKnownHostsFile
194.It GSSAPIAuthentication
195.It GSSAPIDelegateCredentials
Damien Miller27e9c512005-03-02 12:04:16 +1100196.It HashKnownHosts
Darren Tucker1f203942003-10-15 15:50:42 +1000197.It Host
198.It HostbasedAuthentication
199.It HostKeyAlgorithms
200.It HostKeyAlias
201.It HostName
202.It IdentityFile
Damien Millerbd394c32004-03-08 23:12:36 +1100203.It IdentitiesOnly
Damien Miller0a184732010-11-20 15:21:03 +1100204.It IPQoS
Darren Tucker636ca902004-11-05 20:22:00 +1100205.It KbdInteractiveDevices
Damien Miller2beb32f2010-09-24 22:16:03 +1000206.It KexAlgorithms
Darren Tucker1f203942003-10-15 15:50:42 +1000207.It LogLevel
208.It MACs
209.It NoHostAuthenticationForLocalhost
210.It NumberOfPasswordPrompts
211.It PasswordAuthentication
Damien Miller7ea845e2010-02-12 09:21:02 +1100212.It PKCS11Provider
Darren Tucker1f203942003-10-15 15:50:42 +1000213.It Port
214.It PreferredAuthentications
215.It Protocol
216.It ProxyCommand
217.It PubkeyAuthentication
Darren Tucker62388b22006-01-20 11:31:47 +1100218.It RekeyLimit
Darren Tucker1f203942003-10-15 15:50:42 +1000219.It RhostsRSAAuthentication
220.It RSAAuthentication
Darren Tucker7a6c0662004-05-02 22:14:03 +1000221.It SendEnv
Damien Miller509b0102003-12-17 16:33:10 +1100222.It ServerAliveInterval
223.It ServerAliveCountMax
Darren Tucker1f203942003-10-15 15:50:42 +1000224.It StrictHostKeyChecking
Damien Miller12c150e2003-12-17 16:31:10 +1100225.It TCPKeepAlive
Darren Tucker1f203942003-10-15 15:50:42 +1000226.It UsePrivilegedPort
227.It User
228.It UserKnownHostsFile
229.It VerifyHostKeyDNS
Darren Tucker1f203942003-10-15 15:50:42 +1000230.El
Darren Tucker282b4022009-10-07 08:23:06 +1100231.It Fl P Ar port
232Specifies the port to connect to on the remote host.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100233.It Fl p
234Preserves modification times, access times, and modes from the
235original files transferred.
Darren Tucker46bbbe32009-10-07 08:21:48 +1100236.It Fl q
237Quiet mode: disables the progress meter as well as warning and
238diagnostic messages from
239.Xr ssh 1 .
Damien Miller16a13332002-02-13 14:03:56 +1100240.It Fl R Ar num_requests
Damien Miller50677922003-05-23 18:44:04 +1000241Specify how many requests may be outstanding at any one time.
242Increasing this may slightly improve file transfer speed
243but will increase memory usage.
Damien Miller94717b02008-07-16 21:17:23 +1000244The default is 64 outstanding requests.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100245.It Fl r
246Recursively copy entire directories when uploading and downloading.
247Note that
248.Nm
249does not follow symbolic links encountered in the tree traversal.
Ben Lindstrom6a337632001-09-18 05:47:32 +0000250.It Fl S Ar program
251Name of the
252.Ar program
253to use for the encrypted connection.
254The program must understand
255.Xr ssh 1
256options.
Darren Tucker1f203942003-10-15 15:50:42 +1000257.It Fl s Ar subsystem | sftp_server
258Specifies the SSH2 subsystem or the path for an sftp server
259on the remote host.
260A path is useful for using
261.Nm
262over protocol version 1, or when the remote
263.Xr sshd 8
264does not have an sftp subsystem configured.
265.It Fl v
266Raise logging level.
267This option is also passed to ssh.
Damien Miller33804262001-02-04 23:20:18 +1100268.El
269.Sh INTERACTIVE COMMANDS
Damien Millerd7686fd2001-02-10 00:40:03 +1100270Once in interactive mode,
271.Nm
Ben Lindstrom24643222001-06-25 05:08:11 +0000272understands a set of commands similar to those of
Damien Miller33804262001-02-04 23:20:18 +1100273.Xr ftp 1 .
Darren Tucker16e254d2004-12-06 22:46:45 +1100274Commands are case insensitive.
275Pathnames that contain spaces must be enclosed in quotes.
276Any special characters contained within pathnames that are recognized by
277.Xr glob 3
278must be escaped with backslashes
279.Pq Sq \e .
280.Bl -tag -width Ds
Ben Lindstrom59e12492001-08-15 23:22:56 +0000281.It Ic bye
Damien Miller50677922003-05-23 18:44:04 +1000282Quit
283.Nm sftp .
Damien Millerd7686fd2001-02-10 00:40:03 +1100284.It Ic cd Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000285Change remote directory to
Damien Millerd7686fd2001-02-10 00:40:03 +1100286.Ar path .
Damien Millerd7686fd2001-02-10 00:40:03 +1100287.It Ic chgrp Ar grp Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000288Change group of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100289.Ar path
290to
Damien Miller33804262001-02-04 23:20:18 +1100291.Ar grp .
Darren Tucker16e254d2004-12-06 22:46:45 +1100292.Ar path
293may contain
294.Xr glob 3
295characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100296.Ar grp
Damien Millerd7686fd2001-02-10 00:40:03 +1100297must be a numeric GID.
298.It Ic chmod Ar mode Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000299Change permissions of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100300.Ar path
301to
302.Ar mode .
Darren Tucker16e254d2004-12-06 22:46:45 +1100303.Ar path
304may contain
305.Xr glob 3
306characters and may match multiple files.
Damien Millerd7686fd2001-02-10 00:40:03 +1100307.It Ic chown Ar own Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000308Change owner of file
Damien Millerd7686fd2001-02-10 00:40:03 +1100309.Ar path
310to
Damien Miller33804262001-02-04 23:20:18 +1100311.Ar own .
Darren Tucker16e254d2004-12-06 22:46:45 +1100312.Ar path
313may contain
314.Xr glob 3
315characters and may match multiple files.
Damien Miller33804262001-02-04 23:20:18 +1100316.Ar own
317must be a numeric UID.
Damien Millerd671e5a2008-05-19 14:53:33 +1000318.It Xo Ic df
319.Op Fl hi
320.Op Ar path
321.Xc
322Display usage information for the filesystem holding the current directory
323(or
324.Ar path
325if specified).
326If the
327.Fl h
328flag is specified, the capacity information will be displayed using
329"human-readable" suffixes.
330The
331.Fl i
332flag requests display of inode information in addition to capacity information.
333This command is only supported on servers that implement the
334.Dq statvfs@openssh.com
335extension.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000336.It Ic exit
Damien Miller50677922003-05-23 18:44:04 +1000337Quit
338.Nm sftp .
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000339.It Xo Ic get
Darren Tucker1b0dd172009-10-07 08:37:48 +1100340.Op Fl Ppr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000341.Ar remote-path
342.Op Ar local-path
343.Xc
Damien Miller33804262001-02-04 23:20:18 +1100344Retrieve the
Damien Millerd7686fd2001-02-10 00:40:03 +1100345.Ar remote-path
Damien Miller33804262001-02-04 23:20:18 +1100346and store it on the local machine.
347If the local
Ben Lindstrom24643222001-06-25 05:08:11 +0000348path name is not specified, it is given the same name it has on the
Damien Miller50677922003-05-23 18:44:04 +1000349remote machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100350.Ar remote-path
351may contain
352.Xr glob 3
353characters and may match multiple files.
354If it does and
355.Ar local-path
356is specified, then
357.Ar local-path
358must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100359.Pp
Darren Tuckerb3b40a82009-10-07 08:39:09 +1100360If either the
Darren Tucker05016b22009-10-07 08:38:23 +1100361.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100362or
363.Fl p
Darren Tucker16e254d2004-12-06 22:46:45 +1100364flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000365copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100366.Pp
367If the
368.Fl r
369flag is specified then directories will be copied recursively.
370Note that
371.Nm
372does not follow symbolic links when performing recursive transfers.
Ben Lindstromc9b6eab2001-03-07 01:29:17 +0000373.It Ic help
374Display help text.
Darren Tucker1f203942003-10-15 15:50:42 +1000375.It Ic lcd Ar path
376Change local directory to
377.Ar path .
Damien Millerd7686fd2001-02-10 00:40:03 +1100378.It Ic lls Op Ar ls-options Op Ar path
Ben Lindstrom24643222001-06-25 05:08:11 +0000379Display local directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100380.Ar path
381or current directory if
382.Ar path
Damien Millerd7686fd2001-02-10 00:40:03 +1100383is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100384.Ar ls-options
385may contain any flags supported by the local system's
386.Xr ls 1
387command.
388.Ar path
389may contain
390.Xr glob 3
391characters and may match multiple files.
Damien Millerd7686fd2001-02-10 00:40:03 +1100392.It Ic lmkdir Ar path
Damien Miller33804262001-02-04 23:20:18 +1100393Create local directory specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100394.Ar path .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100395.It Xo Ic ln
396.Op Fl s
397.Ar oldpath
398.Ar newpath
399.Xc
400Create a link from
Damien Miller058316f2001-03-08 10:08:49 +1100401.Ar oldpath
402to
403.Ar newpath .
Darren Tuckeraf1f9092010-12-05 09:02:47 +1100404If the
405.Fl s
406flag is specified the created link is a symbolic link, otherwise it is
407a hard link.
Damien Millerd7686fd2001-02-10 00:40:03 +1100408.It Ic lpwd
409Print local working directory.
Damien Millere1a49812002-09-12 09:54:25 +1000410.It Xo Ic ls
Darren Tucker75fe6262010-01-15 11:42:51 +1100411.Op Fl 1afhlnrSt
Damien Millere1a49812002-09-12 09:54:25 +1000412.Op Ar path
413.Xc
Darren Tucker16e254d2004-12-06 22:46:45 +1100414Display a remote directory listing of either
Damien Miller33804262001-02-04 23:20:18 +1100415.Ar path
Darren Tucker16e254d2004-12-06 22:46:45 +1100416or the current directory if
Damien Miller33804262001-02-04 23:20:18 +1100417.Ar path
Damien Miller50677922003-05-23 18:44:04 +1000418is not specified.
Darren Tucker16e254d2004-12-06 22:46:45 +1100419.Ar path
420may contain
421.Xr glob 3
422characters and may match multiple files.
Darren Tucker15ca6e82004-06-22 13:08:21 +1000423.Pp
Darren Tucker16e254d2004-12-06 22:46:45 +1100424The following flags are recognized and alter the behaviour of
Darren Tucker15ca6e82004-06-22 13:08:21 +1000425.Ic ls
Darren Tucker16e254d2004-12-06 22:46:45 +1100426accordingly:
427.Bl -tag -width Ds
428.It Fl 1
429Produce single columnar output.
430.It Fl a
431List files beginning with a dot
432.Pq Sq \&. .
433.It Fl f
434Do not sort the listing.
435The default sort order is lexicographical.
Darren Tucker2901e2d2010-01-13 22:44:06 +1100436.It Fl h
437When used with a long format option, use unit suffixes: Byte, Kilobyte,
438Megabyte, Gigabyte, Terabyte, Petabyte, and Exabyte in order to reduce
439the number of digits to four or fewer using powers of 2 for sizes (K=1024,
440M=1048576, etc.).
Darren Tucker75fe6262010-01-15 11:42:51 +1100441.It Fl l
442Display additional details including permissions
443and ownership information.
Darren Tucker16e254d2004-12-06 22:46:45 +1100444.It Fl n
445Produce a long listing with user and group information presented
446numerically.
447.It Fl r
448Reverse the sort order of the listing.
449.It Fl S
450Sort the listing by file size.
451.It Fl t
452Sort the listing by last modification time.
453.El
Damien Millerd7686fd2001-02-10 00:40:03 +1100454.It Ic lumask Ar umask
Ben Lindstrom24643222001-06-25 05:08:11 +0000455Set local umask to
Damien Millerd7686fd2001-02-10 00:40:03 +1100456.Ar umask .
457.It Ic mkdir Ar path
458Create remote directory specified by
459.Ar path .
Damien Miller62d57f62003-01-10 21:43:24 +1100460.It Ic progress
461Toggle display of progress meter.
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000462.It Xo Ic put
Darren Tucker05016b22009-10-07 08:38:23 +1100463.Op Fl Ppr
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000464.Ar local-path
Ben Lindstromd5767812002-12-23 02:23:37 +0000465.Op Ar remote-path
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000466.Xc
Damien Miller33804262001-02-04 23:20:18 +1100467Upload
Damien Millerd7686fd2001-02-10 00:40:03 +1100468.Ar local-path
Damien Miller50677922003-05-23 18:44:04 +1000469and store it on the remote machine.
470If the remote path name is not specified, it is given the same name it has
471on the local machine.
Darren Tucker16e254d2004-12-06 22:46:45 +1100472.Ar local-path
473may contain
474.Xr glob 3
475characters and may match multiple files.
476If it does and
477.Ar remote-path
478is specified, then
479.Ar remote-path
480must specify a directory.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100481.Pp
482If ether the
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000483.Fl P
Darren Tucker1b0dd172009-10-07 08:37:48 +1100484or
485.Fl p
486flag is specified, then full file permissions and access times are
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000487copied too.
Darren Tucker1b0dd172009-10-07 08:37:48 +1100488.Pp
489If the
490.Fl r
491flag is specified then directories will be copied recursively.
492Note that
493.Nm
494does not follow symbolic links when performing recursive transfers.
Damien Millerd7686fd2001-02-10 00:40:03 +1100495.It Ic pwd
496Display remote working directory.
Damien Millerd7686fd2001-02-10 00:40:03 +1100497.It Ic quit
Damien Miller50677922003-05-23 18:44:04 +1000498Quit
499.Nm sftp .
Damien Millerd7686fd2001-02-10 00:40:03 +1100500.It Ic rename Ar oldpath Ar newpath
Damien Miller33804262001-02-04 23:20:18 +1100501Rename remote file from
502.Ar oldpath
503to
Damien Millerd7686fd2001-02-10 00:40:03 +1100504.Ar newpath .
Damien Millerd7686fd2001-02-10 00:40:03 +1100505.It Ic rm Ar path
Damien Miller33804262001-02-04 23:20:18 +1100506Delete remote file specified by
Damien Millerd7686fd2001-02-10 00:40:03 +1100507.Ar path .
Darren Tucker1f203942003-10-15 15:50:42 +1000508.It Ic rmdir Ar path
509Remove remote directory specified by
510.Ar path .
Damien Miller058316f2001-03-08 10:08:49 +1100511.It Ic symlink Ar oldpath Ar newpath
Ben Lindstrom24643222001-06-25 05:08:11 +0000512Create a symbolic link from
Damien Miller058316f2001-03-08 10:08:49 +1100513.Ar oldpath
514to
515.Ar newpath .
Damien Miller63421802003-01-08 14:05:23 +1100516.It Ic version
517Display the
518.Nm
519protocol version.
Damien Miller62fd18a2009-01-28 16:14:09 +1100520.It Ic \&! Ns Ar command
Ben Lindstrom24643222001-06-25 05:08:11 +0000521Execute
Damien Miller33804262001-02-04 23:20:18 +1100522.Ar command
Damien Millerd7686fd2001-02-10 00:40:03 +1100523in local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000524.It Ic \&!
Damien Millerd7686fd2001-02-10 00:40:03 +1100525Escape to local shell.
Damien Millerc2b98272003-09-03 12:13:30 +1000526.It Ic \&?
Damien Millerd7686fd2001-02-10 00:40:03 +1100527Synonym for help.
528.El
Damien Miller33804262001-02-04 23:20:18 +1100529.Sh SEE ALSO
Darren Tucker1f203942003-10-15 15:50:42 +1000530.Xr ftp 1 ,
Darren Tucker16e254d2004-12-06 22:46:45 +1100531.Xr ls 1 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000532.Xr scp 1 ,
Damien Miller33804262001-02-04 23:20:18 +1100533.Xr ssh 1 ,
534.Xr ssh-add 1 ,
535.Xr ssh-keygen 1 ,
Darren Tucker16e254d2004-12-06 22:46:45 +1100536.Xr glob 3 ,
Ben Lindstrom3072aae2002-06-21 01:02:39 +0000537.Xr ssh_config 5 ,
Ben Lindstrom160ec622001-04-22 17:17:46 +0000538.Xr sftp-server 8 ,
539.Xr sshd 8
540.Rs
Ben Lindstrom90fd0602001-06-25 04:45:33 +0000541.%A T. Ylonen
542.%A S. Lehtinen
Ben Lindstrom160ec622001-04-22 17:17:46 +0000543.%T "SSH File Transfer Protocol"
544.%N draft-ietf-secsh-filexfer-00.txt
545.%D January 2001
546.%O work in progress material
547.Re