aboutsummaryrefslogtreecommitdiff
path: root/docs/curl.1
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2008-08-20 19:45:43 +0000
committerDan Fandrich <dan@coneharvesters.com>2008-08-20 19:45:43 +0000
commit6768e81d5dfd540c5db030a9fe1c3e2d433617c5 (patch)
treeefc15aa9d17594a5f50ecc6d3b7ac95e466c9410 /docs/curl.1
parent3743f515cfc5ed1b6c7bb301ceca5bafdbcc1360 (diff)
Added an edited version of Vincent Le Normand's documentation of SFTP quote
commands to the man pages.
Diffstat (limited to 'docs/curl.1')
-rw-r--r--docs/curl.139
1 files changed, 35 insertions, 4 deletions
diff --git a/docs/curl.1 b/docs/curl.1
index a23f156a4..5a60aa907 100644
--- a/docs/curl.1
+++ b/docs/curl.1
@@ -934,11 +934,42 @@ just before the transfer command(s), prefix the command with '+' (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
-RFC959 defines to FTP servers, or one of the following commands (with
-appropriate arguments) to SFTP servers: chgrp, chmod, chown, ln, mkdir,
-pwd, rename, rm, rmdir, symlink.
+RFC959 defines to FTP servers, or one of the commands listed below to
+SFTP servers. This option can be used multiple times.
-This option can be used multiple times.
+SFTP is a binary protocol. Unlike for FTP, libcurl interprets SFTP quote
+commands before sending them to the server. Following is the list of
+all supported SFTP quote commands:
+.RS
+.IP "chgrp group file"
+The chgrp command sets the group ID of the file named by the file operand to the
+group ID specified by the group operand. The group operand is a decimal
+integer group ID.
+.IP "chmod mode file"
+The chmod command modifies the file mode bits of the specified file. The
+mode operand is an octal integer mode number.
+.IP "chown user file"
+The chown command sets the owner of the file named by the file operand to the
+user ID specified by the user operand. The user operand is a decimal
+integer user ID.
+.IP "ln source_file target_file"
+The ln and symlink commands create a symbolic link at the target_file location
+pointing to the source_file location.
+.IP "mkdir directory_name"
+The mkdir command creates the directory named by the directory_name operand.
+.IP "pwd"
+The pwd command returns the absolute pathname of the current working directory.
+.IP "rename source target"
+The rename command renames the file or directory named by the source
+operand to the destination path named by the target operand.
+.IP "rm file"
+The rm command removes the file specified by the file operand.
+.IP "rmdir directory"
+The rmdir command removes the directory entry specified by the directory
+operand, provided it is empty.
+.IP "symlink source_file target_file"
+See ln.
+.RE
.IP "--random-file <file>"
(SSL) Specify the path name to file containing what will be considered as
random data. The data is used to seed the random engine for SSL connections.