curl: add --fail in example (#6630)

feature/windows-fix-syntax-2
Tomasz Janiszewski 2021-11-05 00:35:40 +01:00 committed by GitHub
parent b8fad939d5
commit a51f7f6ce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -12,9 +12,9 @@
`curl --remote-name {{http://example.com/filename}}`
- Download a file, following location redirects, and automatically continuing (resuming) a previous file transfer:
- Download a file, following location redirects, and automatically continuing (resuming) a previous file transfer and return an error on server error:
`curl --remote-name --location --continue-at - {{http://example.com/filename}}`
`curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}`
- Send form-encoded data (POST request of type `application/x-www-form-urlencoded`). Use `--data @file_name` or `--data @'-'` to read from STDIN: