This commit is contained in:
2024-10-13 23:21:42 +02:00
commit bbaf7b7487
14 changed files with 2026 additions and 0 deletions

18
download.sh Normal file
View File

@@ -0,0 +1,18 @@
/usr/bin/python3 /home/andre/Dokumente/git/garmin-connect-export/gcexport.py \
--username andregeissler@posteo.de \
--password f7m8g36Ph4gDCy4 \
-c 3 \
-f json \
-d /home/andre/Dokumente/codeberg/bike-part-tracker/input/
cd /home/andre/Dokumente/codeberg/bike-part-tracker/input/
for I in `ls activity_*_summary.json`
do
echo $I
zip $I.zip $I
done
#shopt -s extglob
#$(rm -v !(*.zip))
find /home/andre/Dokumente/codeberg/bike-part-tracker/input/ -type f -not -name '*.zip' -delete