Hi
I'm starting off making a script to read text from a txt file, and I've got this piece of script to start with to dump from a website every 5 mins to 'cbs.txt' and leave it there until the the next dump - but it's not creating the text file...
set lynx "/usr/bin/lynx"
bind time - "05 * * * *" get:news
proc get:news { min hour day month year } {
[open "|$lynx -preparsed -dump -width=3000 cbs.marketwatch.com/news/newsfinder" r] > cbs.txt
}
putlog "GetNews loaded"
I've also tried 'exec' for lynx but still no luck - just wondering if anyone can see any problems as im not getting any error msgs back...
thanks in advance.