<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The Ultimate Wget Download Guide With 15 Awesome Examples</title>
	<atom:link href="http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/</link>
	<description>Guides, HowTos and Tips for Technology Geeks</description>
	<lastBuildDate>Thu, 09 Feb 2012 13:04:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jay P</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-171502</link>
		<dc:creator>Jay P</dc:creator>
		<pubDate>Tue, 03 Jan 2012 20:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-171502</guid>
		<description>A cool trick. If you come across a site with download links using a PHP redirect that won&#039;t work with WGET (you get an html file named *.php* instead of what you want) What you can do is use WGET to mirror the page with the links.

wget --mirror -p -A.php -P ./LOCAL-DIR WEBSITE-URL

It will start downloading all of the PHP on the page including the files behind the PHP redirects. Now what you can do is stop with CTRL+C once it starts downloading one of those files behind the PHP redirect. Above the Progress bar you&#039;ll see a URL next to a Date stamp and above &quot;Resolving [some address here]... [some IP]&quot;, That&#039;s the real location of that file. Using that you can now figure out the actual location of the file you want.

You could also just let WGET keep running until it&#039;s downloaded all the files and just find the one you want from the dump, but depending on how many Download links there are, you could end up with a lot of really large files. If you want to do this I reccomend making sure the Download Loctaion has plenty of Free Space.</description>
		<content:encoded><![CDATA[<p>A cool trick. If you come across a site with download links using a PHP redirect that won&#8217;t work with WGET (you get an html file named *.php* instead of what you want) What you can do is use WGET to mirror the page with the links.</p>
<p>wget &#8211;mirror -p -A.php -P ./LOCAL-DIR WEBSITE-URL</p>
<p>It will start downloading all of the PHP on the page including the files behind the PHP redirects. Now what you can do is stop with CTRL+C once it starts downloading one of those files behind the PHP redirect. Above the Progress bar you&#8217;ll see a URL next to a Date stamp and above &#8220;Resolving [some address here]&#8230; [some IP]&#8220;, That&#8217;s the real location of that file. Using that you can now figure out the actual location of the file you want.</p>
<p>You could also just let WGET keep running until it&#8217;s downloaded all the files and just find the one you want from the dump, but depending on how many Download links there are, you could end up with a lot of really large files. If you want to do this I reccomend making sure the Download Loctaion has plenty of Free Space.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tapas Mishra</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-159054</link>
		<dc:creator>Tapas Mishra</dc:creator>
		<pubDate>Wed, 21 Dec 2011 02:22:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-159054</guid>
		<description>Nice article but there is one more interesting link include the things given &lt;a href=&quot;http://www.askapache.com/linux-unix/wget-header-trick.html&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt; also</description>
		<content:encoded><![CDATA[<p>Nice article but there is one more interesting link include the things given <a href="http://www.askapache.com/linux-unix/wget-header-trick.html" rel="nofollow">here</a> also</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ned</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-144675</link>
		<dc:creator>ned</dc:creator>
		<pubDate>Thu, 24 Nov 2011 16:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-144675</guid>
		<description>To Arun: you can limite the speed (--limit-rate=value k) but you can&#039;t increase it.
It depend with the connexion that you use.
Regards.</description>
		<content:encoded><![CDATA[<p>To Arun: you can limite the speed (&#8211;limit-rate=value k) but you can&#8217;t increase it.<br />
It depend with the connexion that you use.<br />
Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-144435</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Thu, 24 Nov 2011 05:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-144435</guid>
		<description>I am using the wget command to download a file. But, the speed is too slow its happening B/S. Can we increase it to KB/S?. Is there any network settings I need to do in order to increase the speed?</description>
		<content:encoded><![CDATA[<p>I am using the wget command to download a file. But, the speed is too slow its happening B/S. Can we increase it to KB/S?. Is there any network settings I need to do in order to increase the speed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ned</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-140567</link>
		<dc:creator>ned</dc:creator>
		<pubDate>Tue, 15 Nov 2011 10:33:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-140567</guid>
		<description>I found a solution of my prob, it&#039;s only missed a &quot;&quot;:
wget -O &quot;File_%DATE%&quot;.txt ftp://username:pass@Host/folder/File.txt</description>
		<content:encoded><![CDATA[<p>I found a solution of my prob, it&#8217;s only missed a &#8220;&#8221;:<br />
wget -O &#8220;File_%DATE%&#8221;.txt <a href="ftp://username:pass@Host/folder/File.txt" rel="nofollow">ftp://username:pass@Host/folder/File.txt</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ned</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-135432</link>
		<dc:creator>ned</dc:creator>
		<pubDate>Thu, 27 Oct 2011 09:45:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-135432</guid>
		<description>2. Download and Store With a Different File name Using wget -O
How can I store with a different file name dynamiquely 
exemple:
I wanna add the date to the name of file
wget -O  File_%DATE%.txt ftp://username:pass@Host/folder/File.txt
that doesn&#039;t work :(
P.S: I use wget on windows.
Thanks for your help
Regards</description>
		<content:encoded><![CDATA[<p>2. Download and Store With a Different File name Using wget -O<br />
How can I store with a different file name dynamiquely<br />
exemple:<br />
I wanna add the date to the name of file<br />
wget -O  File_%DATE%.txt <a href="ftp://username:pass@Host/folder/File.txt" rel="nofollow">ftp://username:pass@Host/folder/File.txt</a><br />
that doesn&#8217;t work <img src='http://www.thegeekstuff.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
P.S: I use wget on windows.<br />
Thanks for your help<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravikant</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-128464</link>
		<dc:creator>Ravikant</dc:creator>
		<pubDate>Thu, 22 Sep 2011 04:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-128464</guid>
		<description>Where the is saved when downloaded using command &quot;wget&quot; ?????</description>
		<content:encoded><![CDATA[<p>Where the is saved when downloaded using command &#8220;wget&#8221; ?????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Franklin</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-125931</link>
		<dc:creator>Franklin</dc:creator>
		<pubDate>Tue, 06 Sep 2011 03:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-125931</guid>
		<description>If you have a download link (e.g.download_script.php?src_id=7701) but do know the extension of the file being provided (it could be zip, rar, dmg, gz, etc..), how do you know what to call the file in your -O argument?

Is there any way to get wget to resolve the file extensions automatically?</description>
		<content:encoded><![CDATA[<p>If you have a download link (e.g.download_script.php?src_id=7701) but do know the extension of the file being provided (it could be zip, rar, dmg, gz, etc..), how do you know what to call the file in your -O argument?</p>
<p>Is there any way to get wget to resolve the file extensions automatically?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan Bartholomeusz</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-99666</link>
		<dc:creator>Evan Bartholomeusz</dc:creator>
		<pubDate>Thu, 21 Apr 2011 03:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-99666</guid>
		<description>I use a fairly simple WGET command to verify if the IP Address and port are open or closed for a particular server (wget -a /tmp/ports.log -t1 -T1 10.178.30.45:443).

The issue I have is that there are a number of servers that I need to check, and each server links to other IP addresses/ports.

Currently I have several of these one liner type scripts deployed on each of the specific servers which require being run manually as and when required.

Ideally, I am looking to customize this by hopefully creating one script that can recursively read in perhaps a flat file of IP addresses/ports against a WGET command and report on only those that are not connected (ie: &quot;failed: Connection timed out.&quot;).  Results to be written out to an output file.

Is it possible to create this single script in such a way that it can be run from a single location (like windows) rather than deploying the script and running it in each of the servers?

Thanks,

Evan.</description>
		<content:encoded><![CDATA[<p>I use a fairly simple WGET command to verify if the IP Address and port are open or closed for a particular server (wget -a /tmp/ports.log -t1 -T1 10.178.30.45:443).</p>
<p>The issue I have is that there are a number of servers that I need to check, and each server links to other IP addresses/ports.</p>
<p>Currently I have several of these one liner type scripts deployed on each of the specific servers which require being run manually as and when required.</p>
<p>Ideally, I am looking to customize this by hopefully creating one script that can recursively read in perhaps a flat file of IP addresses/ports against a WGET command and report on only those that are not connected (ie: &#8220;failed: Connection timed out.&#8221;).  Results to be written out to an output file.</p>
<p>Is it possible to create this single script in such a way that it can be run from a single location (like windows) rather than deploying the script and running it in each of the servers?</p>
<p>Thanks,</p>
<p>Evan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: magicwand</title>
		<link>http://www.thegeekstuff.com/2009/09/the-ultimate-wget-download-guide-with-15-awesome-examples/comment-page-1/#comment-95321</link>
		<dc:creator>magicwand</dc:creator>
		<pubDate>Tue, 29 Mar 2011 16:58:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=1885#comment-95321</guid>
		<description>This is very handy information. Awesome job! Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>This is very handy information. Awesome job! Thanks for sharing!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: static.thegeekstuff.com

Served from: www.thegeekstuff.com @ 2012-02-09 13:48:54 -->
