diff options
Diffstat (limited to 'sftp.0')
-rw-r--r-- | sftp.0 | 23 |
1 files changed, 15 insertions, 8 deletions
@@ -5,7 +5,7 @@ NAME | |||
5 | 5 | ||
6 | SYNOPSIS | 6 | SYNOPSIS |
7 | sftp [-1246Cpqrv] [-B buffer_size] [-b batchfile] [-c cipher] | 7 | sftp [-1246Cpqrv] [-B buffer_size] [-b batchfile] [-c cipher] |
8 | [-D sftp_server_path] [-F ssh_config] [-i identity_file] | 8 | [-D sftp_server_path] [-F ssh_config] [-i identity_file] [-l limit] |
9 | [-o ssh_option] [-P port] [-R num_requests] [-S program] | 9 | [-o ssh_option] [-P port] [-R num_requests] [-S program] |
10 | [-s subsystem | sftp_server] host | 10 | [-s subsystem | sftp_server] host |
11 | sftp [user@]host[:file ...] | 11 | sftp [user@]host[:file ...] |
@@ -50,9 +50,9 @@ DESCRIPTION | |||
50 | batchfile of `-' may be used to indicate standard input. sftp | 50 | batchfile of `-' may be used to indicate standard input. sftp |
51 | will abort if any of the following commands fail: get, put, | 51 | will abort if any of the following commands fail: get, put, |
52 | rename, ln, rm, mkdir, chdir, ls, lchdir, chmod, chown, chgrp, | 52 | rename, ln, rm, mkdir, chdir, ls, lchdir, chmod, chown, chgrp, |
53 | lpwd, df, and lmkdir. Termination on error can be suppressed on | 53 | lpwd, df, symlink, and lmkdir. Termination on error can be |
54 | a command by command basis by prefixing the command with a `-' | 54 | suppressed on a command by command basis by prefixing the command |
55 | character (for example, -rm /tmp/blah*). | 55 | with a `-' character (for example, -rm /tmp/blah*). |
56 | 56 | ||
57 | -C Enables compression (via ssh's -C flag). | 57 | -C Enables compression (via ssh's -C flag). |
58 | 58 | ||
@@ -73,6 +73,9 @@ DESCRIPTION | |||
73 | key authentication is read. This option is directly passed to | 73 | key authentication is read. This option is directly passed to |
74 | ssh(1). | 74 | ssh(1). |
75 | 75 | ||
76 | -l limit | ||
77 | Limits the used bandwidth, specified in Kbit/s. | ||
78 | |||
76 | -o ssh_option | 79 | -o ssh_option |
77 | Can be used to pass options to ssh in the format used in | 80 | Can be used to pass options to ssh in the format used in |
78 | ssh_config(5). This is useful for specifying options for which | 81 | ssh_config(5). This is useful for specifying options for which |
@@ -105,7 +108,9 @@ DESCRIPTION | |||
105 | HostName | 108 | HostName |
106 | IdentityFile | 109 | IdentityFile |
107 | IdentitiesOnly | 110 | IdentitiesOnly |
111 | IPQoS | ||
108 | KbdInteractiveDevices | 112 | KbdInteractiveDevices |
113 | KexAlgorithms | ||
109 | LogLevel | 114 | LogLevel |
110 | MACs | 115 | MACs |
111 | NoHostAuthenticationForLocalhost | 116 | NoHostAuthenticationForLocalhost |
@@ -225,8 +230,10 @@ INTERACTIVE COMMANDS | |||
225 | lmkdir path | 230 | lmkdir path |
226 | Create local directory specified by path. | 231 | Create local directory specified by path. |
227 | 232 | ||
228 | ln oldpath newpath | 233 | ln [-s] oldpath newpath |
229 | Create a symbolic link from oldpath to newpath. | 234 | Create a link from oldpath to newpath. If the -s flag is |
235 | specified the created link is a symbolic link, otherwise it is a | ||
236 | hard link. | ||
230 | 237 | ||
231 | lpwd Print local working directory. | 238 | lpwd Print local working directory. |
232 | 239 | ||
@@ -317,8 +324,8 @@ SEE ALSO | |||
317 | ftp(1), ls(1), scp(1), ssh(1), ssh-add(1), ssh-keygen(1), glob(3), | 324 | ftp(1), ls(1), scp(1), ssh(1), ssh-add(1), ssh-keygen(1), glob(3), |
318 | ssh_config(5), sftp-server(8), sshd(8) | 325 | ssh_config(5), sftp-server(8), sshd(8) |
319 | 326 | ||
320 | T. Ylonen, S. Lehtinen, SSH File Transfer Protocol, | 327 | T. Ylonen and S. Lehtinen, SSH File Transfer Protocol, |
321 | draft-ietf-secsh-filexfer-00.txt, January 2001, work in progress | 328 | draft-ietf-secsh-filexfer-00.txt, January 2001, work in progress |
322 | material. | 329 | material. |
323 | 330 | ||
324 | OpenBSD 4.8 February 8, 2010 OpenBSD 4.8 | 331 | OpenBSD 4.8 December 4, 2010 OpenBSD 4.8 |