1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-11-21 16:06:17 +02:00

ircstat/mlabs: not very smart script to download monthly log of #m-labs

This commit is contained in:
Werner Almesberger 2014-02-01 18:44:12 -03:00
parent a27d1958fb
commit 62bd73e0f6

7
ircstat/mlabs Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
for y in 13 14; do
for m in 01 02 03 04 05 06 07 08 09 10 11 12; do
F=m-labs/20$y-$m.txt
[ -s $F ] || wget -O $F http://irclog.whitequark.org/$F
done
done