7 lines
191 B
Bash
7 lines
191 B
Bash
#!/usr/bin/env bash
|
|
|
|
for FILE in output/*
|
|
do
|
|
curl -Ss -u "${USERNAME}":"${PASSWORD}" -T "${FILE}" "https://cloud.crystalyx.net/remote.php/dav/files/${USERNAME}/Public/TWI/${FILE##*/}"
|
|
done
|