<?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: Create Arbitrarily Sized Files In Less Than 15 Lines of Ruby</title>
	<atom:link href="http://blog.jerodsanto.net/2009/05/create-arbitrarily-sized-files-in-less-than-15-lines-of-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jerodsanto.net/2009/05/create-arbitrarily-sized-files-in-less-than-15-lines-of-ruby/</link>
	<description>with Jerod Santo</description>
	<lastBuildDate>Mon, 26 Jul 2010 03:23:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Jerod Santo</title>
		<link>http://blog.jerodsanto.net/2009/05/create-arbitrarily-sized-files-in-less-than-15-lines-of-ruby/comment-page-1/#comment-417</link>
		<dc:creator>Jerod Santo</dc:creator>
		<pubDate>Sat, 23 May 2009 04:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jerodsanto.net/?p=369#comment-417</guid>
		<description>You absolutely right, and &lt;strong&gt;dd&lt;/strong&gt; is a powerful tool. The advantage of using this script instead is not having to remember which flags and settings to use to accomplish the task (plus the ones you listed).&lt;br&gt;&lt;br&gt;Of course, you could always set up a shell function to wrap the &lt;strong&gt;dd&lt;/strong&gt; command if you wanted.</description>
		<content:encoded><![CDATA[<p>You absolutely right, and <strong>dd</strong> is a powerful tool. The advantage of using this script instead is not having to remember which flags and settings to use to accomplish the task (plus the ones you listed).</p>
<p>Of course, you could always set up a shell function to wrap the <strong>dd</strong> command if you wanted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joemi</title>
		<link>http://blog.jerodsanto.net/2009/05/create-arbitrarily-sized-files-in-less-than-15-lines-of-ruby/comment-page-1/#comment-416</link>
		<dc:creator>joemi</dc:creator>
		<pubDate>Sat, 23 May 2009 04:47:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jerodsanto.net/?p=369#comment-416</guid>
		<description>Or, if you&#039;ve got a unix-like terminal available, you could just use &quot;dd if=/dev/zero of=FILENAME bs=1m count=1&quot; on the command line and change the &quot;1&quot; in &quot;count=1&quot; to however many megs you want. Also, you can change &quot;if=/dev/zero&quot; to &quot;if=/dev/urandom&quot; to make the file be filled with random data instead of zeroes.&lt;br&gt;&lt;br&gt;Granted, the Ruby method has some error control and automatic file naming, and it fills the file with a user-defined string, instead of just zeroes or just random numbers.</description>
		<content:encoded><![CDATA[<p>Or, if you&#39;ve got a unix-like terminal available, you could just use &#8220;dd if=/dev/zero of=FILENAME bs=1m count=1&#8243; on the command line and change the &#8220;1&#8243; in &#8220;count=1&#8243; to however many megs you want. Also, you can change &#8220;if=/dev/zero&#8221; to &#8220;if=/dev/urandom&#8221; to make the file be filled with random data instead of zeroes.</p>
<p>Granted, the Ruby method has some error control and automatic file naming, and it fills the file with a user-defined string, instead of just zeroes or just random numbers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sant0sk1</title>
		<link>http://blog.jerodsanto.net/2009/05/create-arbitrarily-sized-files-in-less-than-15-lines-of-ruby/comment-page-1/#comment-220</link>
		<dc:creator>sant0sk1</dc:creator>
		<pubDate>Fri, 22 May 2009 21:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jerodsanto.net/?p=369#comment-220</guid>
		<description>You absolutely right, and &lt;strong&gt;dd&lt;/strong&gt; is a powerful tool. The advantage of using this script instead is not having to remember which flags and settings to use to accomplish the task (plus the ones you listed).&lt;br&gt;&lt;br&gt;Of course, you could always set up a shell function to wrap the &lt;strong&gt;dd&lt;/strong&gt; command if you wanted.</description>
		<content:encoded><![CDATA[<p>You absolutely right, and <strong>dd</strong> is a powerful tool. The advantage of using this script instead is not having to remember which flags and settings to use to accomplish the task (plus the ones you listed).</p>
<p>Of course, you could always set up a shell function to wrap the <strong>dd</strong> command if you wanted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joemi</title>
		<link>http://blog.jerodsanto.net/2009/05/create-arbitrarily-sized-files-in-less-than-15-lines-of-ruby/comment-page-1/#comment-218</link>
		<dc:creator>joemi</dc:creator>
		<pubDate>Fri, 22 May 2009 21:47:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jerodsanto.net/?p=369#comment-218</guid>
		<description>Or, if you&#039;ve got a unix-like terminal available, you could just use &quot;dd if=/dev/zero of=FILENAME bs=1m count=1&quot; on the command line and change the &quot;1&quot; in &quot;count=1&quot; to however many megs you want. Also, you can change &quot;if=/dev/zero&quot; to &quot;if=/dev/urandom&quot; to make the file be filled with random data instead of zeroes.&lt;br&gt;&lt;br&gt;Granted, the Ruby method has some error control and automatic file naming, and it fills the file with a user-defined string, instead of just zeroes or just random numbers.</description>
		<content:encoded><![CDATA[<p>Or, if you&#39;ve got a unix-like terminal available, you could just use &#8220;dd if=/dev/zero of=FILENAME bs=1m count=1&#8243; on the command line and change the &#8220;1&#8243; in &#8220;count=1&#8243; to however many megs you want. Also, you can change &#8220;if=/dev/zero&#8221; to &#8220;if=/dev/urandom&#8221; to make the file be filled with random data instead of zeroes.</p>
<p>Granted, the Ruby method has some error control and automatic file naming, and it fills the file with a user-defined string, instead of just zeroes or just random numbers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
