Des données sur le passage à Calais - retour accueil
git clone git://bebou.netlib.re/calais-data
Log | Files | Refs | README |
createlinks.sh (281B)
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 day=$(date --date $date +"%A-%B-%d-%Y"|sed -E 's,-0,-,') 11 echo "$bing$date$stuff$day$end" 12 done 13