Re: wget or curl and yousendit.com

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




On 10/13/2012 06:26 PM, Mark LaPierre wrote:
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


Will try it. Thanks for the example.

--
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


[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [EPEL Devel]     [Fedora Magazine]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Desktop]     [Fedora Fonts]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Fedora Sparc]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux