Des données sur le passage à Calais - retour accueil
git clone git://bebou.netlib.re/calais-data
Log | Files | Refs | README |
fetchwindspeeds.sh (218B)
1 #! /bin/sh 2 3 cat | 4 while read link;do 5 a=$(echo "$link" | cut -d"/" -f7,8,9) 6 b=$(curl -Ls $link | 7 grep -Eo '[0-9]+.[0-9]+ mph' | 8 tail -n+3 | 9 cut -d' ' -f1 | 10 tsv-summarize --mean 1) 11 echo "$a $b" 12 sleep 2 13 done 14