<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>FileFormat.Info &#187; curl</title>
	<atom:link href="http://fileformat.wordpress.com/tag/curl/feed/" rel="self" type="application/rss+xml" />
	<link>http://fileformat.wordpress.com</link>
	<description>Observations from running www.FileFormat.Info</description>
	<lastBuildDate>Tue, 01 Jan 2008 17:28:57 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='fileformat.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/5545e65fed59b043d22ac0b7d44a9d8c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>FileFormat.Info &#187; curl</title>
		<link>http://fileformat.wordpress.com</link>
	</image>
			<item>
		<title>Resuming an HTTP download with Curl</title>
		<link>http://fileformat.wordpress.com/2007/12/30/resuming-an-http-download-with-curl/</link>
		<comments>http://fileformat.wordpress.com/2007/12/30/resuming-an-http-download-with-curl/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 17:53:18 +0000</pubDate>
		<dc:creator>fileformat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[curl]]></category>

		<guid isPermaLink="false">http://fileformat.wordpress.com/2007/12/30/resuming-an-http-download-with-curl/</guid>
		<description><![CDATA[I had to download an ISO image to test some new firewall software and it got interrupted halfway through.  Fortunately, curl has a way to continue from where you left out with the &#8220;-C -&#8221; option.  A full command line looks like:
curl -C &#8211; &#8211;compressed &#8211;output disk.iso http://example/download/disk.iso
      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fileformat.wordpress.com&blog=1189397&post=32&subd=fileformat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had to download an ISO image to test some new firewall software and it got interrupted halfway through.  Fortunately, curl has a way to continue from where you left out with the &#8220;-C -&#8221; option.  A full command line looks like:</p>
<p>curl -C &#8211; &#8211;compressed &#8211;output disk.iso http://example/download/disk.iso</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fileformat.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fileformat.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fileformat.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fileformat.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fileformat.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fileformat.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fileformat.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fileformat.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fileformat.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fileformat.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fileformat.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fileformat.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fileformat.wordpress.com&blog=1189397&post=32&subd=fileformat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fileformat.wordpress.com/2007/12/30/resuming-an-http-download-with-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f3088e381422e0ceb1fb2688b8c1f556?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fileformat</media:title>
		</media:content>
	</item>
		<item>
		<title>Avoid hogging bandwidth with curl&#8217;s &#8211;limit-rate</title>
		<link>http://fileformat.wordpress.com/2007/10/26/avoid-hogging-bandwidth-with-curls-limit-rate/</link>
		<comments>http://fileformat.wordpress.com/2007/10/26/avoid-hogging-bandwidth-with-curls-limit-rate/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 19:21:52 +0000</pubDate>
		<dc:creator>fileformat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[curl]]></category>

		<guid isPermaLink="false">http://fileformat.wordpress.com/2007/10/26/avoid-hogging-bandwidth-with-curls-limit-rate/</guid>
		<description><![CDATA[At work we have a slower (1.1 Mbps) internet connection and I don&#8217;t want to hog it when I need to download a big file.  Fortunately, curl has a &#8211;limit-rate option.  For example (should be one line):
curl &#8211;verbose &#8211;output bigfile.tar.gz &#8211;limit-rate 3000 http://download.example.com/bigfile.tar.gz
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fileformat.wordpress.com&blog=1189397&post=28&subd=fileformat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>At work we have a slower (1.1 Mbps) internet connection and I don&#8217;t want to hog it when I need to download a big file.  Fortunately, curl has a &#8211;limit-rate option.  For example (should be one line):</p>
<blockquote><p>curl &#8211;verbose &#8211;output bigfile.tar.gz &#8211;limit-rate 3000 http://download.example.com/bigfile.tar.gz</p></blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fileformat.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fileformat.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fileformat.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fileformat.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fileformat.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fileformat.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fileformat.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fileformat.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fileformat.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fileformat.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fileformat.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fileformat.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fileformat.wordpress.com&blog=1189397&post=28&subd=fileformat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://fileformat.wordpress.com/2007/10/26/avoid-hogging-bandwidth-with-curls-limit-rate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f3088e381422e0ceb1fb2688b8c1f556?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fileformat</media:title>
		</media:content>
	</item>
	</channel>
</rss>