Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Download all Aperture Quick Tour movies at once, from the command line' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Download all Aperture Quick Tour movies at once, from the command line
Authored by: pepi on Oct 04, '06 06:11:53PM
You can fetch all of the movies listed here to your $PWD with the following command pipe:

curl -s 'http://www.macosxhints.com/article.php?story=20060926074757255' | grep -e "\.mov" | sed -e 's/^.*http:\/\//http:\/\//g' -e 's/\.mov.*/\.mov/g' | uniq | while read url; do curl -LO -# -C - "{$url}" ; done

You may want to create a new folder to contain the movies and cd into it, before running this pipe. This will autoresume the download if you run it againin case you need to interrupt the command.
Regards Pepi

[ Reply to This | # ]
Download all Aperture Quick Tour movies at once, from the command line
Authored by: Ag3ntS on Oct 05, '06 03:50:29PM

This is much more automated than doing a drag-and-drop, which, incidentally, is quite difficult to do with text in Safari for some unknown reason. I was just going to do cmd+c and cmd+v to the downloads window, but if theres some terminal lovin' to be had, I'll go for that.



[ Reply to This | # ]