How do I use Wget to download all images into a single folder, from a URL?

Try this: wget -nd -r -P /save/location -A jpeg,jpg,bmp,gif,png http://www.somedomain.com Here is some more information: -nd prevents the creation of a directory hierarchy (i.e. no directories). -r enables recursive retrieval. See Recursive Download for more information. -P sets the directory prefix where all files and directories are saved to. -A sets a whitelist for retrieving … Read more

How to get past the login page with Wget?

Based on the manual page: # Log in to the server. This only needs to be done once. wget –save-cookies cookies.txt \ –keep-session-cookies \ –post-data ‘user=foo&password=bar’ \ –delete-after \ http://server.com/auth.php # Now grab the page or pages we care about. wget –load-cookies cookies.txt \ http://server.com/interesting/article.php Make sure the –post-data parameter is properly percent-encoded (especially ampersands!) … Read more