for j in $(cat genres.txt);do curl -s http://www.hit-tuner.net/en/worldwide/genre/$j.html | htmlq -a href a | grep "worldwide/radio"| cut -c23- >> A-$j.txt ;echo -e "$j";done
for i in {2..50};dofor j in $(cat genres.txt);do curl -s http://www.hit-tuner.net/en/worldwide/genre/index.php\?seite\=$i\&suchwort\=$j\&auswahl\=\&db\=| htmlq -a href a | grep "worldwide/radio"| cut -c23- >> A-$j.txt ;echo -e "$j - $i";done;done
for j in $(cat languages.txt);do curl -s http://www.hit-tuner.net/en/worldwide/language/$j.html | htmlq -a href a | grep "../radio"| cut -c10- >> A-$j.txt ;echo -e "$j";done
for i in {2..40};dofor j in $(cat languages.txt);do curl -s http://www.hit-tuner.net/en/worldwide/language/index.php\?seite\=$i\&genre\=$j| htmlq -a href a | grep "../radio"| cut -c10- >> A-$j.txt ;echo -e "$j - $i";done;done
for j in $(cat countries.txt);do curl -s http://www.hit-tuner.net/en/worldwide/country/$j.html | htmlq -a href a | grep "../radio"| cut -c10- >> A-$j.txt ;echo -e "$j";done
for i in {2..40};dofor j in $(cat countries.txt);do curl -s http://www.hit-tuner.net/en/worldwide/country/index.php\?seite\=$i\&genre\=$j| htmlq -a href a | grep "../radio"| cut -c10- >> A-$j.txt ;echo -e "$j - $i";done;done
# scrape the germany states
for j in $(cat germany.txt);do curl -s http://www.hit-tuner.net/en/germany/state/$j.html | htmlq -a href a | grep "../radio"| cut -c10- >> A-$j.txt ;echo -e "$j";done
for j in $(cat germany.txt);do curl -s http://www.hit-tuner.net/en/germany/state/index.php?seite=2&genre=$j| htmlq -a href a | grep "../radio"| cut -c10- >> A-$j.txt ;echo -e "$j";done