]> andersk Git - openssh.git/blame - sftp.1
- fgsch@cvs.openbsd.org 2003/01/10 08:19:07
[openssh.git] / sftp.1
CommitLineData
b65c3807 1.\" $OpenBSD: sftp.1,v 1.40 2003/01/10 08:19:07 fgsch Exp $
61e96248 2.\"
f3c7c613 3.\" Copyright (c) 2001 Damien Miller. All rights reserved.
61e96248 4.\"
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.\"
317611b5 25.Dd February 4, 2001
61e96248 26.Dt SFTP 1
27.Os
28.Sh NAME
29.Nm sftp
e68225b2 30.Nd Secure file transfer program
61e96248 31.Sh SYNOPSIS
32.Nm sftp
7d5e8c46 33.Op Fl vC1
a5ec8a3d 34.Op Fl b Ar batchfile
61e96248 35.Op Fl o Ar ssh_option
e3c1c3e6 36.Op Fl s Ar subsystem | sftp_server
7d5e8c46 37.Op Fl B Ar buffer_size
38.Op Fl F Ar ssh_config
39.Op Fl P Ar sftp_server path
c25d3df7 40.Op Fl R Ar num_requests
e3c1c3e6 41.Op Fl S Ar program
42.Ar host
edeeab1e 43.Nm sftp
44.Op [\fIuser\fR@]\fIhost\fR[:\fIfile\fR [\fIfile\fR]]
45.Nm sftp
3730bb22 46.Op [\fIuser\fR@]\fIhost\fR[:\fIdir\fR[\fI/\fR]]
61e96248 47.Sh DESCRIPTION
48.Nm
49is an interactive file transfer program, similar to
50.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.
56.Nm
57connects and logs into the specified
cf7ff074 58.Ar host ,
61e96248 59then enters an interactive command mode.
60.Pp
3730bb22 61The second usage format will retrieve files automatically if a non-interactive
cf7ff074 62authentication method is used; otherwise it will do so after
63successful interactive authentication.
edeeab1e 64.Pp
65The last usage format allows the sftp client to start in a remote directory.
66.Pp
61e96248 67The options are as follows:
68.Bl -tag -width Ds
a5ec8a3d 69.It Fl b Ar batchfile
70Batch mode reads a series of commands from an input
acf06a60 71.Ar batchfile
a5ec8a3d 72instead of
acf06a60 73.Em stdin .
74Since it lacks user interaction it should be used in conjunction with
75non-interactive authentication.
76.Nm
3730bb22 77will abort if any of the following
78commands fail:
7e35f994 79.Ic get , put , rename , ln ,
9a36208d 80.Ic rm , mkdir , chdir , ls ,
81.Ic lchdir , chmod , chown , chgrp , lpwd
a5ec8a3d 82and
acf06a60 83.Ic lmkdir .
9a36208d 84Termination on error can be suppressed on a command by command basis by
85prefixing the command with a
86.Ic '-'
87character (For example,
88.Ic -rm /tmp/blah*
89).
61e96248 90.It Fl o Ar ssh_option
38539909 91Can be used to pass options to
92.Nm ssh
c21a7c4a 93in the format used in
94.Xr ssh_config 5 .
95This is useful for specifying options
38539909 96for which there is no separate
97.Nm sftp
e3c1c3e6 98command-line flag. For example, to specify an alternate
99port use:
100.Ic sftp -oPort=24 .
101.It Fl s Ar subsystem | sftp_server
102Specifies the SSH2 subsystem or the path for an sftp server
103on the remote host. A path is useful for using sftp over
104protocol version 1, or when the remote
105.Nm sshd
106does not have an sftp subsystem configured.
7d5e8c46 107.It Fl v
108Raise logging level. This option is also passed to ssh.
109.It Fl B Ar buffer_size
7203d6bb 110Specify the size of the buffer that
7d5e8c46 111.Nm
112uses when transferring files. Larger buffers require fewer round trips at
113the cost of higher memory consumption. The default is 32768 bytes.
114.It Fl C
115Enables compression (via ssh's
116.Fl C
117flag).
118.It Fl F Ar ssh_config
119Specifies an alternative
120per-user configuration file for
121.Nm ssh .
122This option is directly passed to
123.Xr ssh 1 .
124.It Fl P Ar sftp_server path
7203d6bb 125Connect directly to a local
126.Nm sftp-server
7d5e8c46 127(rather than via
128.Nm ssh )
129This option may be useful in debugging the client and server.
c25d3df7 130.It Fl R Ar num_requests
7203d6bb 131Specify how many requests may be outstanding at any one time. Increasing
c25d3df7 132this may slightly improve file transfer speed but will increase memory
133usage. The default is 16 outstanding requests.
e3c1c3e6 134.It Fl S Ar program
135Name of the
136.Ar program
137to use for the encrypted connection.
138The program must understand
139.Xr ssh 1
140options.
7d5e8c46 141.It Fl 1
142Specify the use of protocol version 1.
61e96248 143.El
144.Sh INTERACTIVE COMMANDS
0426a3b4 145Once in interactive mode,
146.Nm
3730bb22 147understands a set of commands similar to those of
61e96248 148.Xr ftp 1 .
a0e6fead 149Commands are case insensitive and pathnames may be enclosed in quotes if they
150contain spaces.
61e96248 151.Bl -tag -width Ds
68874d2b 152.It Ic bye
153Quit sftp.
0426a3b4 154.It Ic cd Ar path
3730bb22 155Change remote directory to
0426a3b4 156.Ar path .
157.It Ic lcd Ar path
3730bb22 158Change local directory to
0426a3b4 159.Ar path .
160.It Ic chgrp Ar grp Ar path
3730bb22 161Change group of file
0426a3b4 162.Ar path
163to
61e96248 164.Ar grp .
165.Ar grp
0426a3b4 166must be a numeric GID.
167.It Ic chmod Ar mode Ar path
3730bb22 168Change permissions of file
0426a3b4 169.Ar path
170to
171.Ar mode .
172.It Ic chown Ar own Ar path
3730bb22 173Change owner of file
0426a3b4 174.Ar path
175to
61e96248 176.Ar own .
177.Ar own
178must be a numeric UID.
17910dce 179.It Ic exit
180Quit sftp.
58c54a79 181.It Xo Ic get
182.Op Ar flags
183.Ar remote-path
184.Op Ar local-path
185.Xc
61e96248 186Retrieve the
0426a3b4 187.Ar remote-path
61e96248 188and store it on the local machine.
189If the local
3730bb22 190path name is not specified, it is given the same name it has on the
191remote machine. If the
58c54a79 192.Fl P
193flag is specified, then the file's full permission and access time are
194copied too.
17910dce 195.It Ic help
196Display help text.
0426a3b4 197.It Ic lls Op Ar ls-options Op Ar path
3730bb22 198Display local directory listing of either
61e96248 199.Ar path
200or current directory if
201.Ar path
0426a3b4 202is not specified.
203.It Ic lmkdir Ar path
61e96248 204Create local directory specified by
0426a3b4 205.Ar path .
3a7fe5ba 206.It Ic ln Ar oldpath Ar newpath
3730bb22 207Create a symbolic link from
3a7fe5ba 208.Ar oldpath
209to
210.Ar newpath .
0426a3b4 211.It Ic lpwd
212Print local working directory.
00b3ad3e 213.It Xo Ic ls
214.Op Ar flags
215.Op Ar path
216.Xc
61e96248 217Display remote directory listing of either
218.Ar path
0426a3b4 219or current directory if
220.Ar path
00b3ad3e 221is not specified. If the
222.Fl l
223flag is specified, then display additional details including permissions
224and ownership information.
0426a3b4 225.It Ic lumask Ar umask
3730bb22 226Set local umask to
0426a3b4 227.Ar umask .
228.It Ic mkdir Ar path
61e96248 229Create remote directory specified by
0426a3b4 230.Ar path .
b65c3807 231.It Ic progress
232Toggle display of progress meter.
58c54a79 233.It Xo Ic put
234.Op Ar flags
235.Ar local-path
2ea16b0b 236.Op Ar remote-path
58c54a79 237.Xc
61e96248 238Upload
0426a3b4 239.Ar local-path
3730bb22 240and store it on the remote machine. If the remote path name is not
241specified, it is given the same name it has on the local machine. If the
58c54a79 242.Fl P
243flag is specified, then the file's full permission and access time are
244copied too.
0426a3b4 245.It Ic pwd
246Display remote working directory.
0426a3b4 247.It Ic quit
248Quit sftp.
249.It Ic rename Ar oldpath Ar newpath
61e96248 250Rename remote file from
251.Ar oldpath
252to
0426a3b4 253.Ar newpath .
254.It Ic rmdir Ar path
61e96248 255Remove remote directory specified by
0426a3b4 256.Ar path .
257.It Ic rm Ar path
61e96248 258Delete remote file specified by
0426a3b4 259.Ar path .
3a7fe5ba 260.It Ic symlink Ar oldpath Ar newpath
3730bb22 261Create a symbolic link from
3a7fe5ba 262.Ar oldpath
263to
264.Ar newpath .
048ff12c 265.It Ic version
266Display the
267.Nm
268protocol version.
61e96248 269.It Ic ! Ar command
3730bb22 270Execute
61e96248 271.Ar command
0426a3b4 272in local shell.
61e96248 273.It Ic !
0426a3b4 274Escape to local shell.
275.It Ic ?
276Synonym for help.
277.El
61e96248 278.Sh AUTHORS
279Damien Miller <djm@mindrot.org>
280.Sh SEE ALSO
2cad6cef 281.Xr scp 1 ,
61e96248 282.Xr ssh 1 ,
283.Xr ssh-add 1 ,
284.Xr ssh-keygen 1 ,
c21a7c4a 285.Xr ssh_config 5 ,
2cad6cef 286.Xr sftp-server 8 ,
287.Xr sshd 8
288.Rs
7b518233 289.%A T. Ylonen
290.%A S. Lehtinen
2cad6cef 291.%T "SSH File Transfer Protocol"
292.%N draft-ietf-secsh-filexfer-00.txt
293.%D January 2001
294.%O work in progress material
295.Re
This page took 0.167885 seconds and 5 git commands to generate.