suchbegriffstatistik
This commit is contained in:
parent
5995a8775b
commit
47cce4a660
1 changed files with 12 additions and 0 deletions
12
spielspass/fireballsuche.sh
Executable file
12
spielspass/fireballsuche.sh
Executable 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
|
||||||
|
|
Loading…
Reference in a new issue