quote.d 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. c: Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: quote
  4. Arg: <command>
  5. Short: Q
  6. Help: Send command(s) to server before transfer
  7. Protocols: FTP SFTP
  8. Category: ftp sftp
  9. Example: --quote "DELE file" ftp://example.com/foo
  10. Added: 5.3
  11. See-also: request
  12. ---
  13. Send an arbitrary command to the remote FTP or SFTP server. Quote commands are
  14. sent BEFORE the transfer takes place (just after the initial PWD command in an
  15. FTP transfer, to be exact). To make commands take place after a successful
  16. transfer, prefix them with a dash '-'.
  17. (FTP only) To make commands be sent after curl has changed the working
  18. directory, just before the file transfer command(s), prefix the command with a
  19. '+'. This is not performed when a directory listing is performed.
  20. You may specify any number of commands.
  21. By default curl will stop at first failure. To make curl continue even if the
  22. command fails, prefix the command with an asterisk (*). Otherwise, if the
  23. server returns failure for one of the commands, the entire operation will be
  24. aborted.
  25. You must send syntactically correct FTP commands as RFC 959 defines to FTP
  26. servers, or one of the commands listed below to SFTP servers.
  27. This option can be used multiple times.
  28. SFTP is a binary protocol. Unlike for FTP, curl interprets SFTP quote commands
  29. itself before sending them to the server. File names may be quoted
  30. shell-style to embed spaces or special characters. Following is the list of
  31. all supported SFTP quote commands:
  32. .RS
  33. .IP "atime date file"
  34. The atime command sets the last access time of the file named by the file
  35. operand. The <date expression> can be all sorts of date strings, see the
  36. *curl_getdate(3)* man page for date expression details. (Added in 7.73.0)
  37. .IP "chgrp group file"
  38. The chgrp command sets the group ID of the file named by the file operand to
  39. the group ID specified by the group operand. The group operand is a decimal
  40. integer group ID.
  41. .IP "chmod mode file"
  42. The chmod command modifies the file mode bits of the specified file. The
  43. mode operand is an octal integer mode number.
  44. .IP "chown user file"
  45. The chown command sets the owner of the file named by the file operand to the
  46. user ID specified by the user operand. The user operand is a decimal
  47. integer user ID.
  48. .IP "ln source_file target_file"
  49. The ln and symlink commands create a symbolic link at the target_file location
  50. pointing to the source_file location.
  51. .IP "mkdir directory_name"
  52. The mkdir command creates the directory named by the directory_name operand.
  53. .IP "mtime date file"
  54. The mtime command sets the last modification time of the file named by the
  55. file operand. The <date expression> can be all sorts of date strings, see the
  56. *curl_getdate(3)* man page for date expression details. (Added in 7.73.0)
  57. .IP "pwd"
  58. The pwd command returns the absolute pathname of the current working directory.
  59. .IP "rename source target"
  60. The rename command renames the file or directory named by the source
  61. operand to the destination path named by the target operand.
  62. .IP "rm file"
  63. The rm command removes the file specified by the file operand.
  64. .IP "rmdir directory"
  65. The rmdir command removes the directory entry specified by the directory
  66. operand, provided it is empty.
  67. .IP "symlink source_file target_file"
  68. See ln.
  69. .RE