Tagged Questions

a program that retrieves content from web servers

learn more… | top users | synonyms

20
votes
4answers
25k views

Using wget to recursively fetch a directory with arbitrary files in it

I have a web directory where I store some config files. I'd like to use wget to pull those files down and maintain their current structure. For instance, the remote directory looks like: ...
11
votes
3answers
12k views

How to get past the login page with wget?

I am trying to use wget to download a page, but I cannot get past the login screen. How do I send the username/password using post data on the login page and then download the actual page as an ...
8
votes
5answers
3k views

Downloading Xcode with wget or curl

I am trying to download Xcode from the Apple Developer site using just wget or curl. I think I am successfully storing the cookie I need to download the .dmg file, but I am not completely sure. When ...
7
votes
3answers
784 views

How to scrape a _private_ google group?

I'd like to scrape the discussion list of a private google group. It's a multi-page list and I might have to this later again so scripting sounds like the way to go. Since this is a private group, I ...
6
votes
1answer
75 views

Block images, CSS or JS if the user did not visit my site

I suddenly get a lot of requests to my site (wget, curl etc...). I do not want any of these request to be executed unless a user has visited my site at least once using a valid browser (like Firefox ...
6
votes
2answers
2k views

Difference between Python urllib.urlretrieve() and wget

I am trying to retrieve a 500mb file using Python, and I have a script which uses urllib.urlretrieve(). There seems to some network problem between me and the download site, as this call consistently ...
6
votes
9answers
7k views

BASH script: Downloading consecutive numbered files with wget

I have a web server that saves the logs files of a web application numbered. A file name example for this would be: dbsclog01s001.log dbsclog01s002.log dbsclog01s003.log The last 3 digits are the ...
6
votes
4answers
3k views

Possible to assign a new IP address on every http request?

Is it possible for me to change or assign my server a new IP address every time it needs to make a http request with commands such as wget? Thanks all Update The reason for this is exactly what the ...
6
votes
7answers
4k views

is there a curl/wget option that says not to save files upon http errors?

I want to download a lot of urls in a script but I do not want to save the ones that lead to HTTP errors. as far as I read in the man they both don't provide such functionality. does anyone know ...
5
votes
6answers
3k views

How to get the contents of a webpage in a shell variable?

In Linux how can I fetch an URL and get its contents in a variable in shell script?
5
votes
2answers
1k views

Spider a Website and Return URLs Only

I'm not quite sure how best to define/articulate this, but I'm looking for a way to pseudo-spider a website. The key is that I don't actually want the content, but rather a simple list of URIs. I can ...
5
votes
2answers
1k views

Hudson trigger builds remotely gives a forbidden 403 error

I have a shell script on the same machine that hudson is deployed on and upon executing it, it calls wget on a hudson build trigger URL. Since its the same machine, I access it as ...
5
votes
2answers
3k views

WGET: How to specify the location with Wget?

I need files to be downloaded to /tmp/cron_test/. My wget code is wget --random-wait -r -p -nd -e robots=off -A".pdf" -U mozilla http://math.stanford.edu/undergrad/ So is there some parameter to ...
4
votes
2answers
141 views

Save dynamic PHP page for offline viewing

I have a PHP page foo.php that pulls records from a MySQL database and displays them in a nice way. The tricky part is I have links at the top like "Sort by Name" that link to foo.php?sort=name. My ...
4
votes
2answers
187 views

wget with wild characters [*.cpp]

How to use wild characters in wget ? e.g. wget http://abc.com/programs/*.cpp Thanks
4
votes
4answers
233 views

How can I save a “complete” HTML file as single file?

Are there any utilities or web browsers that can save a file and referenced resources as a single HTML file? With most web browsers / wget there's the option to download required CSS and images as ...
4
votes
2answers
2k views

wget/curl in C#

I'm writing a scraper in C# and I'd like to download some data to files and submit some forms. I've been using wget and curl so far for that. How would I do that in C# (on Linux)? (I mean a library ...
4
votes
3answers
287 views

Cygwin and alternatives to replicating linux commands on windows

I keep running into issues with a .bat script I want to write to automate some tasks related to the setup of my PHP application. I can't for instance do simple wget to download files and so on. I ...
4
votes
1answer
323 views

wget not behaving via IPC::Open3 vs bash

I'm trying to stream a file from a remote website to a local command and am running into some problems when trying to detect errors. The code looks something like this: use IPC::Open3; my @cmd = ...
4
votes
2answers
1k views

Using /dev/tcp instead of wget

Why does this work: exec 3<>/dev/tcp/www.google.com/80 echo -e "GET / HTTP/1.1\n\n">&3 cat <&3 And this fail: echo -e "GET / HTTP/1.1\n\n" > /dev/tcp/www.google.com/80 cat ...
4
votes
3answers
204 views

How can I resume downloads in Perl?

I have a project that depends upon some other binaries to be downloaded from web at install time.For this what i do is: if ( file-present-in-src/) # skip that file else # use wget to download ...
4
votes
11answers
12k views

wget Vs urlretrieve of python

I have a task to download Gbs of data from a website. The data is in form of .gz files, each file being 45mb in size. The easy way to get the files is use "wget -r -np -A files url". This will ...
3
votes
1answer
187 views

wget not working to download jar file from maven repo

I'm trying to download a single jar file from the maven repository, from the URL below. http://repo1.maven.org/maven2/com/google/guava/guava-testlib/10.0/guava-testlib-10.0.jar Downloading in a ...
3
votes
1answer
590 views

Download a working local copy of a webpage

I would like to download a local copy of a web page and get all of the css, images, javascript, etc. In previous discussions (e.g. here and here, both of which are more than two years old), two ...
3
votes
3answers
266 views

wget - how to mirror only a section of a website

I cannot get wget to mirror a section of a website (a folder path below root) - it only seems to work from the website homepage. I've tried many options - here is one example wget -rkp -l3 -np ...
3
votes
2answers
228 views

set the download speed with LWP - Perl

I am developing an application which download files from internet; the files are mainly in ftp servers, I am using LWP::Simple and the getstore function to retrieve the files. But I would like to ...
3
votes
3answers
2k views

wget - skip if files exist?

this is example simplest wget: wget http://site.org/images/misc/pic.png but how to make wget skip download if pic.png already available?
3
votes
2answers
458 views

Web page scraping: press javascript button

I am trying to scrape a web page and to recieve the data i need to press a button. This is the source code for the button: "a class="press-me_btn" href="javascript:void( ...
3
votes
3answers
1k views

How to enable 'wget' to download the whole content of HTML with Javascript

I have a site which I want to download using Unix wget. If you look at the source code and content of the file it contain section called SUMMARY. However after issuing a wget command like this: ...
3
votes
4answers
2k views

wget return downloaded filename

I'm using wget in a php script and need to get the name of the file downloaded. For example, if I try <?php system('/usr/bin/wget -q --directory-prefix="./downloads/" http://www.google.com/'); ...
3
votes
2answers
584 views

How to implement a web client in bash

Are you able to write a Bash script that will download an HTTP resource from the web? The inputs are: $hostname $port $path $output You can't: use external commands other than telnet ...
3
votes
2answers
5k views

wget, self-signed certs and a custom HTTPS server

For various reasons I have created a simple HTTP server, and added SSL support via OpenSSL. I'm using self-signed certificates. IE, FireFox and Chrome happily load content as long as I add the CA to ...
3
votes
3answers
1k views

How to calculate a hash for a string (url) in bash for wget caching

I'm building a little tool that will download files using wget, reading the urls from different files. The same url may be present in different files; the url may even be present in one file several ...
3
votes
2answers
2k views

How do I make wget properly quiet?

wget always echoes system values to the console, even when I specify -q (quiet) on the command line, e.g.: C:\> wget -q http://www.google.com/ SYSTEM_WGETRC = c:/progra~1/wget/etc/wgetrc syswgetrc ...
3
votes
2answers
5k views

using wget against protected site with NTLM

Trying to mirror a local intranet site and have found previous questions using 'wget'. It works great with sites that are anonymous, but I have not been able to use it against a site that is ...
3
votes
13answers
767 views

A command to download a file other than Wget

My host allows limited access to SSH and Linux commands. However, I can't use Wget believe it or not. I was hoping for something to download a file (.flv) from another server. Is there another ...
3
votes
1answer
817 views

wget WIKI, don't get diff pages (exclude by regex?)

I'm trying to download a static mirror of a wiki using wget. I only want the latest version of each article (not the full history or diffs between versions). It would be easy to just download the ...
3
votes
4answers
4k views

How do web spiders differ from Wget's spider?

The next sentence caught my eye in Wget's manual wget --spider --force-html -i bookmarks.html This feature needs much more work for Wget to get close to the functionality of real web spiders. I ...
3
votes
2answers
503 views

How to download fast lots of web pages in ruby? Parallelizing download?

I need to scrape(using scrAPI) 400+ web pages ruby, my actual code is very sequential: data = urls.map {|url| scraper.scrape url } Actually the code is a bit different (exception handling and ...
3
votes
11answers
2k views

How can I create a site in php and have it generate a static version?

For a particular project I have, no server side code is allowed. How can I create the web site in php (with includes, conditionals, etc) and then have that converted into a static html site that I can ...
2
votes
1answer
81 views

Variables in wget post data

I am working on a simple bash script to download images from the website Tumblr. The idea is to use read to get login info from the user, and wget --post-data to log in, and this is what I have: read ...
2
votes
3answers
145 views

Continue getting a partially-downloaded file

Is there a Perl-tool, which behaves like wget --continue and is able to continue getting a partially-downloaded file?
2
votes
2answers
93 views

Passing arguments to ruby interpreter when stdin is used as ruby source

I built a rails deploy dashboard that kicks off a ruby script on a remote machine to update a deployed application. The command to run the script looks like this: ssh test-host-02 "wget -q -O - ...
2
votes
1answer
55 views

PHP - detecting changes in external database-driven site

For a homework project, I'm creating a PHP driven website which main function is aggregating news about various university courses. The main problem is this: (almost) each course has it's own website. ...
2
votes
2answers
370 views

wget download aspx page

i want to download the web page:http://www.codeproject.com/KB/tips/ModelViewController.aspx using wget,so i simply use the really basic command: wget ...
2
votes
3answers
147 views

Can I use wget to check , but not download

Can I use wget to check for a 404 and not actually download the resource? If so how? Thanks
2
votes
0answers
52 views

How do I use wget for the targets that are linked behind php or cgi etc scripts?

Often times, I need to use wget from a remote non-gui login but I see that the links presented on webpages do not directly point to the file but rather a script that leads to the download. This means ...
2
votes
3answers
1k views

How do I download a tarball from github using curl?

I am trying to download a tarball from github.com using curl but it does not seem to be redirecting: $ curl --insecure https://github.com/pinard/Pymacs/tarball/v0.24-beta2 <html><body>You ...
2
votes
2answers
411 views

Download chunked resource with wget?

There's a sample ASP.NET project with this controller: using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class ...
2
votes
1answer
424 views

optimize web scraping using wget

I am using wget to download a huge list of web pages(around 70,000).I am forced to put a sleep of around 2 seconds in between successive wget.This takes a huge amount of time.Something like 70 ...

1 2 3 4 5 9