summaryrefslogtreecommitdiffstats
path: root/day.sh
diff options
context:
space:
mode:
Diffstat (limited to 'day.sh')
-rw-r--r--day.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/day.sh b/day.sh
new file mode 100644
index 0000000..6780dd9
--- /dev/null
+++ b/day.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+OUTDIR=${OUTDIR:-$PWD/db}
+# old: thyssenkruppsystemengineering
+# empty: metabo-nuertingen
+mkdir -p $OUTDIR
+for i in thales-deutschland ibm-boeblingen buerocampus-wangen continental-villingen vodafone-campus ;do
+ db=$OUTDIR/$i.json
+ python3 day.py --db $db --cantine $i
+ python3 ara2influx.py $db --cantine $i
+ # git add $db
+done