blob: d58eccd9ad8d6fc0ff1e9cb7a21e6f2aa1681709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
# harmony.fm-Playlist
# $1 = outfile
### Variabel
Name="harmony.fm [www.harmonyfm.de]"
###
# get...
wget -q --tries=2 --timeout=5 -O /tmp/playlist.utf8 "http://www.harmonyfm.de/index.php"
iconv -c -s -f UTF8 -t ISO8859-1 /tmp/playlist.utf8 -o /tmp/playlist
# Artist/Title
all=`grep -A6 'id="channelOnAir"' /tmp/playlist`
artist=${all//*$'<p>'/}; artist=${artist/$' mit '*/}
title=${all//*$' mit '/}; title=${title/$'<'\/'p>'*/}
# write...
if [ $1 ]; then
echo $Name > $1
echo $artist >> $1
echo $title >> $1
else
echo "$Name: Interpret/Titel = $artist / $title"
fi
|