Last active
May 22, 2021 09:27
-
-
Save Schm1tz1/9502d6a35b5fa56bd67f6eca61fc70a2 to your computer and use it in GitHub Desktop.
reMarkable Uploader via WebUI using curl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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