mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-22 02:52:28 +02:00
8 lines
171 B
Bash
Executable File
8 lines
171 B
Bash
Executable File
#!/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
|