diff options
author | yvesf <yvesf-git@xapek.org> | 2011-07-16 11:49:01 +0200 |
---|---|---|
committer | yvesf <yvesf-git@xapek.org> | 2011-07-16 11:49:01 +0200 |
commit | 6ba7fa0dba08d1b91cf42a8a797b7f5ad44ec217 (patch) | |
tree | 806679f70f30b2a2e4fd3ffd8a1215af05f8b9f1 /micromusic/dl.sh | |
parent | fade859723fa5b4607fd060c0b1778854d680144 (diff) | |
download | scripts-6ba7fa0dba08d1b91cf42a8a797b7f5ad44ec217.tar.gz scripts-6ba7fa0dba08d1b91cf42a8a797b7f5ad44ec217.zip |
reorganize files; add micromusic download
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 |