curl https://online-radio.eu/top100 | htmlq -a href a | grep "/radio/"| cut -c31- > A-top_100.txt
for i in ""\?page={2..200};dofor j in $(cat genres.txt);do curl -s https://online-radio.eu/genre/$j$i| htmlq -a href a | grep "/radio/"| cut -c31- >> A-$j.txt ;echo -e "$j - $i";done;done
for i in ""\?page={2..160};dofor j in $(cat countries.txt);do curl -s https://online-radio.eu/country/$j$i| htmlq -a href a | grep "/radio/"| cut -c31- >> A-$j.txt ;echo -e "$j - $i";done;done
for i in ""\?page={2..150};dofor j in $(cat languages.txt);do curl -s https://online-radio.eu/language/$j$i| htmlq -a href a | grep "/radio/"| cut -c31- >> A-$j.txt ;echo -e "$j - $i";done;done
# remove duplicate links
for i in A-*.txt ;do cat $i| awk '!seen[$0]++' > A$i;echo -e $i;done
for i in AA-*.txt ;dofor j in $(cat $i);do curl -s https://online-radio.eu/export/winamp/$j| grep "Title\|File"| sed 's/File1\=//g'| sed 's/Title1\=/#EXTINF:-1 , /g'| sed 's/\;//g' >> A$i;echo -e "$j - $i";done;done