<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Evolution Systems &#187; Wget</title>
	<atom:link href="http://evolution-systems.co.uk/tag/wget/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolution-systems.co.uk</link>
	<description>Web Development, Software Development and Linux Consultancy services</description>
	<lastBuildDate>Fri, 08 Aug 2025 09:18:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Wget Entire Directory</title>
		<link>http://evolution-systems.co.uk/2009/05/15/wget-entire-directory-2/</link>
		<comments>http://evolution-systems.co.uk/2009/05/15/wget-entire-directory-2/#comments</comments>
		<pubDate>Fri, 15 May 2009 15:30:05 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[Directory]]></category>
		<category><![CDATA[Wget]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/wordpress/?p=492</guid>
		<description><![CDATA[I had the need to grab a whole directory via wget earlier which surprisingly I hadn&#8217;t needed to do before. The solution is quite simple : wget -r -l1 --no-parent http://host/dir/ This will grab the whole directory. It basically works by telling wget to recurse (-r) but sets the level of directory recursion to 1 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I had the need to grab a whole directory via wget earlier which surprisingly I hadn&#8217;t needed to do before. The solution is quite simple :</p>
<p><code>wget -r -l1 --no-parent http://host/dir/</code><br />
This will grab the whole directory. It basically works by telling wget to recurse (-r) but sets the level of directory recursion to 1 (-l1). The &#8211;no-parent option tells it not to follow the parent directory link.</p>
<p>Another handy wget command along the same lines is :</p>
<p><code>wget -r -l1 --no-parent -A.gif http://host/dir/</code></p>
<p>This is useful for just getting files of a single type. In this case it will download *.gif from the directory</p>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2009/05/15/wget-entire-directory-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
