Des données sur le passage à Calais - retour accueil
git clone git://bebou.netlib.re/calais-data
Log | Files | Refs | README |
createlinks.sh (350B)
1 #! /bin/sh 2 3 LC_ALL=C 4 bing="https://weatherspark.com/h/d/46933/" 5 stuff="/Historical-Weather-on-" 6 end="-in-Calais-France" 7 # < data.tsv tail -n+2 | cut -f1 | 8 cat | 9 while read date;do 10 date=$(echo "$date" | awk -F'/' 'BEGIN{OFS="/";}{print $1,$3,$2}') 11 day=$(date --date $date +"%A-%B-%d-%Y"|sed -E 's,-0,-,') 12 echo "$bing$date$stuff$day$end" 13 done 14