This repository has been archived on 2024-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
Auberge_Vagabonde/upload.sh

7 lines
197 B
Bash
Raw Normal View History

2021-05-18 13:21:20 +00:00
#!/usr/bin/env bash
2022-01-18 22:14:09 +00:00
for FILE in output/epubs/*
2021-05-18 13:21:20 +00:00
do
2021-05-18 13:27:19 +00:00
curl -Ss -u "${USERNAME}":"${PASSWORD}" -T "${FILE}" "https://cloud.crystalyx.net/remote.php/dav/files/${USERNAME}/Public/TWI/${FILE##*/}"
2021-05-18 13:21:20 +00:00
done