ar_redadeg/scripts/backup_umap.sh

26 lines
750 B
Bash
Raw Normal View History

2019-01-12 13:24:17 +00:00
#!/bin/bash
2019-01-08 21:40:50 +00:00
2019-01-12 12:42:15 +00:00
cd /data/www/vhosts/ar-redadeg/htdocs/scripts/backup/
2019-01-08 21:40:50 +00:00
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# on récupère les couches geojson depuis umap pour sauvegarde au cas où
# le tracé manuel
2019-01-19 09:47:32 +00:00
curl -sS http://umap.openstreetmap.fr/fr/datalayer/746021/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_trace.geojson"
2019-01-08 21:40:50 +00:00
# PK VIP
2019-01-12 13:24:17 +00:00
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_pk_vip.geojson"
# et on remonte d'un niveau ceux cd 06h 13h et 18h
# si le nom du fichier matche le motif regexp
# on copie le fichier dans un autre répertoire
for f in jour_courant/*.geojson
do
if [[ $f =~ [0-9]{8}_(0600|1300|1800)_* ]]
2019-01-12 13:30:40 +00:00
then cp $f ./
2019-01-12 13:24:17 +00:00
fi
done
2019-01-08 21:40:50 +00:00