On 10/13/2012 08:12 PM, Ian Malone wrote:
On 13 October 2012 23:08, JD<jd1008@xxxxxxxxx> wrote:
Is there a way to use wget or curl or clive to download files from
yousendit.com?
Would appreciate some examples.
Each file link, when you cright-click it, takes you to the full link of the
file,
and you can then use that link as an arg to wget.
If feeling brave you could script link extraction from the page and a
second curl request, alternatively wget's recursive -r option may be
what you want:
http://www.linuxforums.org/forum/applications/145133-get-complete-webpage-wget-curl.html
Here's a bit of a guide to build your own script.
# GET THE WEB PAGE
wget -q -O "rundown.php?prgId=2"
"http://www.npr.org/templates/rundowns/rundown.php?prgId=2&prgDate=$DATE"
sleep 1
# NOW STRIP OUT THE URLs AND GET THE MP3 FILES
for URL in `grep "http://pd.npr.org/anon.npr-mp3/npr/atc"
"rundown.php?prgId=2" | sort | uniq | awk -F"\"" '{print $4}' | awk
-F"?" '{print $1}'`
do
wget $URL 2> /dev/null &
sleep 1
done
--
_
°v°
/(_)\
^ ^ Mark LaPierre
Registerd Linux user No #267004
https://linuxcounter.net/
****
--
users mailing list
users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org