Files
AI-on-the-edge-device-docs/docs/Upload-files-by-script.md
CaCO3 701e2f3804 -
2023-01-05 23:09:32 +01:00

7 lines
247 B
Markdown

# Scripted File Upload
To upload a file eg. using `curl`, you first have to delete it and then upload it:
```
curl -d '' http://192.168.1.153/delete/html/index.html
curl --data-binary @ota_page.html http://192.168.1.153/upload/html/index.html
```