brain/src/ops/tools/curl.md

10 lines
142 B
Markdown
Raw Normal View History

2021-03-04 08:54:42 +00:00
# Curl
## Add form-file in a POST request
```shell
curl -F "field-name=@/my/path" http://example.com
```
POST is implicit because of `-F`.