]> andersk Git - gssapi-openssh.git/blame - openssh/sftp.1
update from Simon
[gssapi-openssh.git] / openssh / sftp.1
CommitLineData
3c0ef626 1.\" $OpenBSD: sftp.1,v 1.26 2001/09/17 20:38:09 stevesk Exp $
2.\"
3.\" Copyright (c) 2001 Damien Miller. All rights reserved.
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.\"
25.Dd February 4, 2001
26.Dt SFTP 1
27.Os
28.Sh NAME
29.Nm sftp
30.Nd Secure file transfer program
31.Sh SYNOPSIS
32.Nm sftp
33.Op Fl 1Cv
34.Op Fl b Ar batchfile
35.Op Fl F Ar ssh_config
36.Op Fl o Ar ssh_option
37.Op Fl s Ar subsystem | sftp_server
38.Op Fl S Ar program
39.Ar host
40.Nm sftp
41.Op [\fIuser\fR@]\fIhost\fR[:\fIfile\fR [\fIfile\fR]]
42.Nm sftp
43.Op [\fIuser\fR@]\fIhost\fR[:\fIdir\fR[\fI/\fR]]
44.Sh DESCRIPTION
45.Nm
46is an interactive file transfer program, similar to
47.Xr ftp 1 ,
48which performs all operations over an encrypted
49.Xr ssh 1
50transport.
51It may also use many features of ssh, such as public key authentication and
52compression.
53.Nm
54connects and logs into the specified
55.Ar host ,
56then enters an interactive command mode.
57.Pp
58The second usage format will retrieve files automatically if a non-interactive
59authentication method is used; otherwise it will do so after
60successful interactive authentication.
61.Pp
62The last usage format allows the sftp client to start in a remote directory.
63.Pp
64The options are as follows:
65.Bl -tag -width Ds
66.It Fl 1
67Specify the use of protocol version 1.
68.It Fl b Ar batchfile
69Batch mode reads a series of commands from an input
70.Ar batchfile
71instead of
72.Em stdin .
73Since it lacks user interaction it should be used in conjunction with
74non-interactive authentication.
75.Nm
76will abort if any of the following
77commands fail:
78.Ic get , put , rename , ln , rm , mkdir , chdir , lchdir
79and
80.Ic lmkdir .
81.It Fl C
82Enables compression (via ssh's
83.Fl C
84flag).
85.It Fl F Ar ssh_config
86Specifies an alternative
87per-user configuration file for
88.Nm ssh .
89This option is directly passed to
90.Xr ssh 1 .
91.It Fl o Ar ssh_option
92Can be used to pass options to
93.Nm ssh
94in the format used in the
95.Xr ssh 1
96configuration file. This is useful for specifying options
97for which there is no separate
98.Nm sftp
99command-line flag. For example, to specify an alternate
100port use:
101.Ic sftp -oPort=24 .
102.It Fl s Ar subsystem | sftp_server
103Specifies the SSH2 subsystem or the path for an sftp server
104on the remote host. A path is useful for using sftp over
105protocol version 1, or when the remote
106.Nm sshd
107does not have an sftp subsystem configured.
108.It Fl S Ar program
109Name of the
110.Ar program
111to use for the encrypted connection.
112The program must understand
113.Xr ssh 1
114options.
115.It Fl v
116Raise logging level. This option is also passed to ssh.
117.El
118.Sh INTERACTIVE COMMANDS
119Once in interactive mode,
120.Nm
121understands a set of commands similar to those of
122.Xr ftp 1 .
123Commands are case insensitive and pathnames may be enclosed in quotes if they
124contain spaces.
125.Bl -tag -width Ds
126.It Ic bye
127Quit sftp.
128.It Ic cd Ar path
129Change remote directory to
130.Ar path .
131.It Ic lcd Ar path
132Change local directory to
133.Ar path .
134.It Ic chgrp Ar grp Ar path
135Change group of file
136.Ar path
137to
138.Ar grp .
139.Ar grp
140must be a numeric GID.
141.It Ic chmod Ar mode Ar path
142Change permissions of file
143.Ar path
144to
145.Ar mode .
146.It Ic chown Ar own Ar path
147Change owner of file
148.Ar path
149to
150.Ar own .
151.Ar own
152must be a numeric UID.
153.It Ic exit
154Quit sftp.
155.It Xo Ic get
156.Op Ar flags
157.Ar remote-path
158.Op Ar local-path
159.Xc
160Retrieve the
161.Ar remote-path
162and store it on the local machine.
163If the local
164path name is not specified, it is given the same name it has on the
165remote machine. If the
166.Fl P
167flag is specified, then the file's full permission and access time are
168copied too.
169.It Ic help
170Display help text.
171.It Ic lls Op Ar ls-options Op Ar path
172Display local directory listing of either
173.Ar path
174or current directory if
175.Ar path
176is not specified.
177.It Ic lmkdir Ar path
178Create local directory specified by
179.Ar path .
180.It Ic ln Ar oldpath Ar newpath
181Create a symbolic link from
182.Ar oldpath
183to
184.Ar newpath .
185.It Ic lpwd
186Print local working directory.
187.It Ic ls Op Ar path
188Display remote directory listing of either
189.Ar path
190or current directory if
191.Ar path
192is not specified.
193.It Ic lumask Ar umask
194Set local umask to
195.Ar umask .
196.It Ic mkdir Ar path
197Create remote directory specified by
198.Ar path .
199.It Xo Ic put
200.Op Ar flags
201.Ar local-path
202.Op Ar local-path
203.Xc
204Upload
205.Ar local-path
206and store it on the remote machine. If the remote path name is not
207specified, it is given the same name it has on the local machine. If the
208.Fl P
209flag is specified, then the file's full permission and access time are
210copied too.
211.It Ic pwd
212Display remote working directory.
213.It Ic quit
214Quit sftp.
215.It Ic rename Ar oldpath Ar newpath
216Rename remote file from
217.Ar oldpath
218to
219.Ar newpath .
220.It Ic rmdir Ar path
221Remove remote directory specified by
222.Ar path .
223.It Ic rm Ar path
224Delete remote file specified by
225.Ar path .
226.It Ic symlink Ar oldpath Ar newpath
227Create a symbolic link from
228.Ar oldpath
229to
230.Ar newpath .
231.It Ic ! Ar command
232Execute
233.Ar command
234in local shell.
235.It Ic !
236Escape to local shell.
237.It Ic ?
238Synonym for help.
239.El
240.Sh AUTHORS
241Damien Miller <djm@mindrot.org>
242.Sh SEE ALSO
243.Xr scp 1 ,
244.Xr ssh 1 ,
245.Xr ssh-add 1 ,
246.Xr ssh-keygen 1 ,
247.Xr sftp-server 8 ,
248.Xr sshd 8
249.Rs
250.%A T. Ylonen
251.%A S. Lehtinen
252.%T "SSH File Transfer Protocol"
253.%N draft-ietf-secsh-filexfer-00.txt
254.%D January 2001
255.%O work in progress material
256.Re
This page took 0.107973 seconds and 5 git commands to generate.