Skip to content

Instantly share code, notes, and snippets.

@Schm1tz1
Last active May 22, 2021 09:27
Show Gist options
  • Save Schm1tz1/9502d6a35b5fa56bd67f6eca61fc70a2 to your computer and use it in GitHub Desktop.
Save Schm1tz1/9502d6a35b5fa56bd67f6eca61fc70a2 to your computer and use it in GitHub Desktop.
reMarkable Uploader via WebUI using curl
#!/usr/bin/env bash
for i in *.pdf; do
echo "Uploading $i..."
curl --form "file=@\"$i\"" http://10.11.99.1/upload
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment