diff options
Diffstat (limited to 'micromusic/dl.sh')
-rwxr-xr-x | micromusic/dl.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/micromusic/dl.sh b/micromusic/dl.sh new file mode 100755 index 0000000..15081b6 --- /dev/null +++ b/micromusic/dl.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +get_random_name() { + # holt dateiname ohne .swf + wget -q -O - "http://micromusic.net/" | sed -ne 's/.*name="strFilename" value="\(.*\).swf".*/\1/p' +} + +while true; do + name="`get_random_name`" + if [ -f "$name.mp3" ]; then + echo "already there $name" + sleep 500 + continue + fi + wget -c "http://micromusic.net/micromusic_db_data/files/MP3/$name.mp3" +done |