diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-06-30 09:57:23 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-06-30 09:57:23 +0200 |
commit | 3e71ebe4eb262c09e871700707525ee16f33497e (patch) | |
tree | d816eac44144ecef880598bc76e385ff5488b79d /docs/curl.1 | |
parent | bfca0e2f507997886d5d4ee63b41f496976ceba8 (diff) | |
download | curl-3e71ebe4eb262c09e871700707525ee16f33497e.tar.gz |
docs: FTP quotes support '*' prefix to ignore errors
By default libcurl stops processing quote commands on failures.
Diffstat (limited to 'docs/curl.1')
-rw-r--r-- | docs/curl.1 | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/docs/curl.1 b/docs/curl.1 index 812b2ebce..349f229bb 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -1068,16 +1068,18 @@ file will not be read and used. See the \fI-K, --config\fP for details on the default config file search path. .IP "-Q, --quote <command>" (FTP/SFTP) Send an arbitrary command to the remote FTP or SFTP server. Quote -commands are sent BEFORE the transfer takes place (just after the -initial PWD command in an FTP transfer, to be exact). To make commands -take place after a successful transfer, prefix them with a dash '-'. -To make commands be sent after libcurl has changed the working directory, -just before the transfer command(s), prefix the command with a '+' (this -is only supported for FTP). You may specify any number of commands. If -the server returns failure for one of the commands, the entire operation -will be aborted. You must send syntactically correct FTP commands as -RFC 959 defines to FTP servers, or one of the commands listed below to -SFTP servers. This option can be used multiple times. +commands are sent BEFORE the transfer takes place (just after the initial PWD +command in an FTP transfer, to be exact). To make commands take place after a +successful transfer, prefix them with a dash '-'. To make commands be sent +after libcurl has changed the working directory, just before the transfer +command(s), prefix the command with a '+' (this is only supported for +FTP). You may specify any number of commands. If the server returns failure +for one of the commands, the entire operation will be aborted. You must send +syntactically correct FTP commands as RFC 959 defines to FTP servers, or one +of the commands listed below to SFTP servers. This option can be used +multiple times. When speaking to a FTP server, prefix the command with an +asterisk (*) to make libcurl continue even if the command fails as by default +curl will stop at first failure. SFTP is a binary protocol. Unlike for FTP, libcurl interprets SFTP quote commands itself before sending them to the server. File names may be quoted |