Skip to content

Instantly share code, notes, and snippets.

@Leechael
Created February 13, 2011 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leechael/824516 to your computer and use it in GitHub Desktop.
Save Leechael/824516 to your computer and use it in GitHub Desktop.
Download all pdf/ppt/pptx/zip/doc/odp files in page
# --------------------------------------------------------------------------------------
# Download all pdf/ppt/pptx/zip/doc/odp files in page.
#
# Usage:
# xxx@xxx:~$ wget_slides http://velocityconf.com/velocity2010/public/schedule/proceedings
# Download all velocity 2010 slides.
# --------------------------------------------------------------------------------------
function wget_slides () {
curl -sX GET "$1" | grep -or 'http:\/\/[^\"]\+\.\(pdf\|pptx\?\|zip\|doc\|odp\)' | awk '{print "\""$0"\""}' | xargs wget
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment