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