18 lines
413 B
Bash
18 lines
413 B
Bash
CALDIR=$HOME/.calendars
|
|
file=$CALDIR/$1
|
|
mail="test@gmail.com"
|
|
endpoint="https://apps.kolabnow.com/calendars"
|
|
|
|
set +o history
|
|
echo "pass argument 1: the file in the form: adressbook/file_wich_causes_issues.ics"
|
|
echo $file
|
|
echo "insert PW for caldav:"
|
|
read -s pw
|
|
curl --verbose --user $mail:$pw -X PUT \
|
|
"$endpoint/$mail/$1"\
|
|
-H "Content-Type:text/calendar" \
|
|
-T $file
|
|
|
|
echo "$endpoint/$mail/$1"
|
|
set -o history
|