Files
AI-on-the-edge-device-docs/docs/Upload-files-by-script.md
Adriaan Van Niekerk 0cd98c67e2 Add Makefile and Markdown linter (#73)
* Add Makefile

* Update .gitignore to exclude venv

* Add requirements.txt for venv

* Add pymarkdown lint Github action

* Update .md from lint tool

* Update README with make commands

* Add linter config
2025-10-31 00:06:36 +01:00

9 lines
250 B
Markdown

# Scripted File Upload
To upload a file e.g. 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
```