Philip wrote:
Mauro Tortonesi wrote:

Thaks for that, Mauro. I don't know how to do that -I'm betterat programming radio stations than computers!. Can you point me to where I could learn what I need to do and how to do it?

unfortunately, i am not familiar with windows shell scripting. however, if you use python something like this should work:


#!/usr/bin/env python

import os

daylist = ( (02, 26, 06), )

format = "http://www.artistlaunch.com/alhourpub/The_Artistlaunch_Hour_-_%02d-%02d-%02d-1.mp3";

for t in daylist:
    try:
        os.execlp ("wget", format % t)
    except:
        print 'ERROR: Unable to execute wget.\n'

# vim: et ts=4 sw=4


--
Aequam memento rebus in arduis servare mentem...

Mauro Tortonesi                          http://www.tortonesi.com

University of Ferrara - Dept. of Eng.    http://www.ing.unife.it
GNU Wget - HTTP/FTP file retrieval tool  http://www.gnu.org/software/wget
Deep Space 6 - IPv6 for Linux            http://www.deepspace6.net
Ferrara Linux User Group                 http://www.ferrara.linux.it

Reply via email to