You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
422 B
14 lines
422 B
#!/bin/bash
|
|
echo ----- automatic update $(date +%F-%H-%M) --------
|
|
cd /root/git/
|
|
git pull
|
|
|
|
# download Covid-Cases for Austria based on age groupes
|
|
wget --output-document=./data/CovidFaelle_Altersgruppe-$(date +%F-%H-%M).csv https://covid19-dashboard.ages.at/data/CovidFaelle_Altersgruppe.csv 2>&1
|
|
|
|
git add data
|
|
git commit -m 'automatic update'
|
|
git push origin
|
|
|
|
echo ------------------------------------------------
|
|
echo
|
|
|