Ben Lindstrom | aafff9c | 2001-05-06 03:01:02 +0000 | [diff] [blame] | 1 | .\" $OpenBSD: sftp.1,v 1.18 2001/05/05 13:42:51 stevesk Exp $ |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 2 | .\" |
Ben Lindstrom | 92a2e38 | 2001-03-05 06:59:27 +0000 | [diff] [blame] | 3 | .\" Copyright (c) 2001 Damien Miller. All rights reserved. |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 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 | .\" |
Ben Lindstrom | 8ffeacf | 2001-04-10 02:43:57 +0000 | [diff] [blame] | 25 | .Dd February 4, 2001 |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 26 | .Dt SFTP 1 |
| 27 | .Os |
| 28 | .Sh NAME |
| 29 | .Nm sftp |
Damien Miller | 225736c | 2001-02-19 21:51:08 +1100 | [diff] [blame] | 30 | .Nd Secure file transfer program |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 31 | .Sh SYNOPSIS |
| 32 | .Nm sftp |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 33 | .Op Fl vC |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 34 | .Op Fl b Ar batchfile |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 35 | .Op Fl o Ar ssh_option |
Ben Lindstrom | 63667f6 | 2001-04-13 00:00:14 +0000 | [diff] [blame] | 36 | .Op Ar host |
| 37 | .Nm sftp |
| 38 | .Op [\fIuser\fR@]\fIhost\fR[:\fIfile\fR [\fIfile\fR]] |
| 39 | .Nm sftp |
| 40 | .Op [\fIuser\fR@]\fIhost\fR[:\fIdir\fR[\fI/\fR]] |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 41 | .Sh DESCRIPTION |
| 42 | .Nm |
| 43 | is an interactive file transfer program, similar to |
| 44 | .Xr ftp 1 , |
| 45 | which performs all operations over an encrypted |
| 46 | .Xr ssh 1 |
| 47 | transport. |
| 48 | It may also use many features of ssh, such as public key authentication and |
| 49 | compression. |
| 50 | .Nm |
| 51 | connects and logs into the specified |
Ben Lindstrom | aafff9c | 2001-05-06 03:01:02 +0000 | [diff] [blame] | 52 | .Ar host , |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 53 | then enters an interactive command mode. |
| 54 | .Pp |
Ben Lindstrom | aafff9c | 2001-05-06 03:01:02 +0000 | [diff] [blame] | 55 | The second usage format will retrieve files automatically if a non-interactive |
| 56 | authentication method is used; otherwise it will do so after |
| 57 | successful interactive authentication. |
Ben Lindstrom | 63667f6 | 2001-04-13 00:00:14 +0000 | [diff] [blame] | 58 | .Pp |
| 59 | The last usage format allows the sftp client to start in a remote directory. |
| 60 | .Pp |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 61 | The options are as follows: |
| 62 | .Bl -tag -width Ds |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 63 | .It Fl b Ar batchfile |
| 64 | Batch mode reads a series of commands from an input |
Ben Lindstrom | 283cb82 | 2001-03-09 00:09:02 +0000 | [diff] [blame] | 65 | .Ar batchfile |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 66 | instead of |
Ben Lindstrom | 283cb82 | 2001-03-09 00:09:02 +0000 | [diff] [blame] | 67 | .Em stdin . |
| 68 | Since it lacks user interaction it should be used in conjunction with |
| 69 | non-interactive authentication. |
| 70 | .Nm |
| 71 | will abort if any of the following |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 72 | commands fail: |
Ben Lindstrom | 283cb82 | 2001-03-09 00:09:02 +0000 | [diff] [blame] | 73 | .Ic get , put , rename , ln , rm , mkdir , chdir , lchdir |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 74 | and |
Ben Lindstrom | 283cb82 | 2001-03-09 00:09:02 +0000 | [diff] [blame] | 75 | .Ic lmkdir . |
Ben Lindstrom | c9b6eab | 2001-03-07 01:29:17 +0000 | [diff] [blame] | 76 | .It Fl C |
| 77 | Enables compression (via ssh's |
| 78 | .Fl C |
| 79 | flag) |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 80 | .It Fl o Ar ssh_option |
| 81 | Specify an option to be directly passed to |
| 82 | .Xr ssh 1 . |
Ben Lindstrom | c9b6eab | 2001-03-07 01:29:17 +0000 | [diff] [blame] | 83 | .It Fl v |
| 84 | Raise logging level. This option is also passed to ssh. |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 85 | .El |
| 86 | .Sh INTERACTIVE COMMANDS |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 87 | Once in interactive mode, |
| 88 | .Nm |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 89 | understands a set of commands similar to those of |
| 90 | .Xr ftp 1 . |
Ben Lindstrom | 27cb1d0 | 2001-02-10 21:59:35 +0000 | [diff] [blame] | 91 | Commands are case insensitive and pathnames may be enclosed in quotes if they |
| 92 | contain spaces. |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 93 | .Bl -tag -width Ds |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 94 | .It Ic cd Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 95 | Change remote directory to |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 96 | .Ar path . |
| 97 | .It Ic lcd Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 98 | Change local directory to |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 99 | .Ar path . |
| 100 | .It Ic chgrp Ar grp Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 101 | Change group of file |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 102 | .Ar path |
| 103 | to |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 104 | .Ar grp . |
| 105 | .Ar grp |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 106 | must be a numeric GID. |
| 107 | .It Ic chmod Ar mode Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 108 | Change permissions of file |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 109 | .Ar path |
| 110 | to |
| 111 | .Ar mode . |
| 112 | .It Ic chown Ar own Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 113 | Change owner of file |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 114 | .Ar path |
| 115 | to |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 116 | .Ar own . |
| 117 | .Ar own |
| 118 | must be a numeric UID. |
Ben Lindstrom | c9b6eab | 2001-03-07 01:29:17 +0000 | [diff] [blame] | 119 | .It Ic exit |
| 120 | Quit sftp. |
Ben Lindstrom | 9d4f2c8 | 2001-02-15 03:22:45 +0000 | [diff] [blame] | 121 | .It Xo Ic get |
| 122 | .Op Ar flags |
| 123 | .Ar remote-path |
| 124 | .Op Ar local-path |
| 125 | .Xc |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 126 | Retrieve the |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 127 | .Ar remote-path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 128 | and store it on the local machine. |
| 129 | If the local |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 130 | path name is not specified, it is given the same name it has on the |
Ben Lindstrom | 9d4f2c8 | 2001-02-15 03:22:45 +0000 | [diff] [blame] | 131 | remote machine. If the |
| 132 | .Fl P |
| 133 | flag is specified, then the file's full permission and access time are |
| 134 | copied too. |
Ben Lindstrom | c9b6eab | 2001-03-07 01:29:17 +0000 | [diff] [blame] | 135 | .It Ic help |
| 136 | Display help text. |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 137 | .It Ic lls Op Ar ls-options Op Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 138 | Display local directory listing of either |
| 139 | .Ar path |
| 140 | or current directory if |
| 141 | .Ar path |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 142 | is not specified. |
| 143 | .It Ic lmkdir Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 144 | Create local directory specified by |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 145 | .Ar path . |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 146 | .It Ic ln Ar oldpath Ar newpath |
| 147 | Create a symbolic link from |
| 148 | .Ar oldpath |
| 149 | to |
| 150 | .Ar newpath . |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 151 | .It Ic lpwd |
| 152 | Print local working directory. |
| 153 | .It Ic ls Op Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 154 | Display remote directory listing of either |
| 155 | .Ar path |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 156 | or current directory if |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 157 | .Ar path |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 158 | is not specified. |
| 159 | .It Ic lumask Ar umask |
| 160 | Set local umask to |
| 161 | .Ar umask . |
| 162 | .It Ic mkdir Ar path |
| 163 | Create remote directory specified by |
| 164 | .Ar path . |
Ben Lindstrom | 9d4f2c8 | 2001-02-15 03:22:45 +0000 | [diff] [blame] | 165 | .It Xo Ic put |
| 166 | .Op Ar flags |
| 167 | .Ar local-path |
| 168 | .Op Ar local-path |
| 169 | .Xc |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 170 | Upload |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 171 | .Ar local-path |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 172 | and store it on the remote machine. If the remote path name is not |
| 173 | specified, it is given the same name it has on the local machine. If the |
Ben Lindstrom | 9d4f2c8 | 2001-02-15 03:22:45 +0000 | [diff] [blame] | 174 | .Fl P |
| 175 | flag is specified, then the file's full permission and access time are |
| 176 | copied too. |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 177 | .It Ic pwd |
| 178 | Display remote working directory. |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 179 | .It Ic quit |
| 180 | Quit sftp. |
| 181 | .It Ic rename Ar oldpath Ar newpath |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 182 | Rename remote file from |
| 183 | .Ar oldpath |
| 184 | to |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 185 | .Ar newpath . |
| 186 | .It Ic rmdir Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 187 | Remove remote directory specified by |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 188 | .Ar path . |
| 189 | .It Ic rm Ar path |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 190 | Delete remote file specified by |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 191 | .Ar path . |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 192 | .It Ic symlink Ar oldpath Ar newpath |
| 193 | Create a symbolic link from |
| 194 | .Ar oldpath |
| 195 | to |
| 196 | .Ar newpath . |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 197 | .It Ic ! Ar command |
| 198 | Execute |
| 199 | .Ar command |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 200 | in local shell. |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 201 | .It Ic ! |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 202 | Escape to local shell. |
| 203 | .It Ic ? |
| 204 | Synonym for help. |
| 205 | .El |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 206 | .Sh AUTHORS |
| 207 | Damien Miller <djm@mindrot.org> |
| 208 | .Sh SEE ALSO |
Ben Lindstrom | 160ec62 | 2001-04-22 17:17:46 +0000 | [diff] [blame] | 209 | .Xr scp 1 , |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 210 | .Xr ssh 1 , |
| 211 | .Xr ssh-add 1 , |
| 212 | .Xr ssh-keygen 1 , |
Ben Lindstrom | 160ec62 | 2001-04-22 17:17:46 +0000 | [diff] [blame] | 213 | .Xr sftp-server 8 , |
| 214 | .Xr sshd 8 |
| 215 | .Rs |
| 216 | .%A T. Ylonen |
| 217 | .%A S. Lehtinen |
| 218 | .%T "SSH File Transfer Protocol" |
| 219 | .%N draft-ietf-secsh-filexfer-00.txt |
| 220 | .%D January 2001 |
| 221 | .%O work in progress material |
| 222 | .Re |