suchbegriffstatistik

This commit is contained in:
age 2006-01-22 11:05:18 +00:00
parent 5995a8775b
commit 47cce4a660

12
spielspass/fireballsuche.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
# die sed zeile wandelt html breaks in shell breaks um ;)
# damit das greppen klappt
while true; do
wget -q -O - http://www.fireball.de/livesuche/index.html \
| grep "Klicken Sie auf eine Anfrage" \
| sed s#\<br\ *\/\>#\\n#g \
| grep "http://suche.fireball.de/cgi-bin/pursuit?query=" \
>> fireballsuchbegriffe.txt
sleep 10
done