Changes between Version 105 and Version 106 of help/en/howto/cli
- Timestamp:
- Jun 20, 2019 6:54:15 PM (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
help/en/howto/cli
v105 v106 142 142 143 143 === URI === 144 145 144 The `<url>` argument for `--copy`, `--download`, `--upload` and `--synchronize` must satisfy following rules: 146 145 * Each URL must start with a scheme and a colon (`https:`) (unless you specify a `--profile`) … … 155 154 * For all protocols where a default path is set and you are not allowed to change it (e.g. accessing a prebuilt `NextCloud` profile with a path set to `/remote.php/webdav`). You are allowed to change the path but it will be appended to the default path. Making `nextcloud:/path` really `nextcloud:/remote.php/webdav/path`. 156 155 157 **Version [milestone:6.0.0 6.9] or later**:Spaces and other special-characters are not required to be percent-encoded (e.g. `%20` for space) as long as the path is quoted `duck --upload "scheme://hostname/path with/spaces" "/Path/To/Local/File With/Spaces"`).156 Spaces and other special-characters are not required to be percent-encoded (e.g. `%20` for space) as long as the path is quoted `duck --upload "scheme://hostname/path with/spaces" "/Path/To/Local/File With/Spaces"`). 158 157 159 158 ||= '''Protocol''' =||= Fully Qualified URI required =||= Absolute Path =||= Relative Path =|| … … 176 175 || Swift (OpenStack Object Storage) || Yes (`swift://<hostname>/<container>/<key>`) || |||| 177 176 177 ==== Examples ==== 178 * List all buckets in S3 with 179 180 {{{ 181 duck --username <Access Key ID> --list s3:/ 182 }}} 183 184 * List all objects in a S3 bucket with 185 {{{ 186 duck --username <Access Key ID> --list s3:/<bucketname>/ 187 }}} 188 178 189 === Generic options === 179 180 190 ==== `--retry` ==== 181 191 Retry requests with I/O failures once per default. Useful on connection timeout or latency issues.