<?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/"
	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>Comments on: Why you don&#8217;t need HJSplit for Linux</title>
	<atom:link href="http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/</link>
	<description>classic jazz, unix one-liners, anti-theism, crypto</description>
	<lastBuildDate>Thu, 03 Dec 2009 13:11:11 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: dooh</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6773</link>
		<dc:creator>dooh</dc:creator>
		<pubDate>Sat, 04 Jul 2009 21:17:37 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6773</guid>
		<description>I figured the files were just literally split and renamed, just shows how stupid people are that try to make you download this closed source HJSplit crap probably full of virii. Shh, don&#039;t show them this page or they will insert headers and obfuscation in the split files!</description>
		<content:encoded><![CDATA[<p>I figured the files were just literally split and renamed, just shows how stupid people are that try to make you download this closed source HJSplit crap probably full of virii. Shh, don&#8217;t show them this page or they will insert headers and obfuscation in the split files!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aman gopal sureka</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6754</link>
		<dc:creator>aman gopal sureka</dc:creator>
		<pubDate>Thu, 15 Jan 2009 08:51:03 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6754</guid>
		<description>thanks a million.  i honestly feel &quot;enlightened&quot; :) this is a really neat feature that i can use.  i was not aware of the split command and the script makes sense (to me) now.</description>
		<content:encoded><![CDATA[<p>thanks a million.  i honestly feel &#8220;enlightened&#8221; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  this is a really neat feature that i can use.  i was not aware of the split command and the script makes sense (to me) now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jedrm</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6753</link>
		<dc:creator>jedrm</dc:creator>
		<pubDate>Thu, 15 Jan 2009 07:31:58 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6753</guid>
		<description>@aman: that&#039;s easy. to split the file use bash&#039;s split command.

split -da 3 bigfile.pdf splitfiles

(&#039;man split&#039; for more info on the useful split command)

the command:

i=1;for file in splitfiles*; do mv $file $(printf “newfiles.%03i” $i);i=$((i+1)) ; done

is just used to rename the files so the first splitfile has .001 has its extension instead of .000 which is the default for the split command.

Because HJSplit only detect files starting with .*1 as its first file (which is weird in computerland where everything should start with 0).

I guess you can make a better version using Perl/Python/Ruby/etc that will split files into HJSPlit named formats but I&#039;m lazy so the above will work anytime, everytime without you breaking a sweat.</description>
		<content:encoded><![CDATA[<p>@aman: that&#8217;s easy. to split the file use bash&#8217;s split command.</p>
<p>split -da 3 bigfile.pdf splitfiles</p>
<p>(&#8216;man split&#8217; for more info on the useful split command)</p>
<p>the command:</p>
<p>i=1;for file in splitfiles*; do mv $file $(printf “newfiles.%03i” $i);i=$((i+1)) ; done</p>
<p>is just used to rename the files so the first splitfile has .001 has its extension instead of .000 which is the default for the split command.</p>
<p>Because HJSplit only detect files starting with .*1 as its first file (which is weird in computerland where everything should start with 0).</p>
<p>I guess you can make a better version using Perl/Python/Ruby/etc that will split files into HJSPlit named formats but I&#8217;m lazy so the above will work anytime, everytime without you breaking a sweat.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aman gopal sureka</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6752</link>
		<dc:creator>aman gopal sureka</dc:creator>
		<pubDate>Wed, 14 Jan 2009 06:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6752</guid>
		<description>great tip.  i rate this as one from a &quot;guru&quot;.  thanks.  but i can not figure out the script that would split the file.  where are we specifying the number of parts we would like to split the file into ?</description>
		<content:encoded><![CDATA[<p>great tip.  i rate this as one from a &#8220;guru&#8221;.  thanks.  but i can not figure out the script that would split the file.  where are we specifying the number of parts we would like to split the file into ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dimas</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6749</link>
		<dc:creator>Dimas</dc:creator>
		<pubDate>Tue, 13 Jan 2009 00:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6749</guid>
		<description>Claps your hands and say yeahhh. Great tips.</description>
		<content:encoded><![CDATA[<p>Claps your hands and say yeahhh. Great tips.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuck</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6715</link>
		<dc:creator>Chuck</dc:creator>
		<pubDate>Sat, 18 Oct 2008 16:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6715</guid>
		<description>One of the best tips I have come across.  THANK YOU!</description>
		<content:encoded><![CDATA[<p>One of the best tips I have come across.  THANK YOU!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jedrm</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6704</link>
		<dc:creator>jedrm</dc:creator>
		<pubDate>Tue, 16 Sep 2008 07:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6704</guid>
		<description>You have the choice of installing cygwin.com. But why install cygwin when you can install hjsplit for windows.

This is just for linux users who don&#039;t want to install hjsplit for linux on their machines.

You can try the &quot;type&quot; command in the command propt but I&#039;m not sure if that will work.

We&#039;d like to hear if you are successful.</description>
		<content:encoded><![CDATA[<p>You have the choice of installing cygwin.com. But why install cygwin when you can install hjsplit for windows.</p>
<p>This is just for linux users who don&#8217;t want to install hjsplit for linux on their machines.</p>
<p>You can try the &#8220;type&#8221; command in the command propt but I&#8217;m not sure if that will work.</p>
<p>We&#8217;d like to hear if you are successful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rishabh</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6703</link>
		<dc:creator>Rishabh</dc:creator>
		<pubDate>Sun, 14 Sep 2008 13:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6703</guid>
		<description>Can&#039;t belive that there is no cat equivalent in Windows... Cant this be done in DOS?</description>
		<content:encoded><![CDATA[<p>Can&#8217;t belive that there is no cat equivalent in Windows&#8230; Cant this be done in DOS?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jedrm</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6701</link>
		<dc:creator>jedrm</dc:creator>
		<pubDate>Fri, 12 Sep 2008 17:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6701</guid>
		<description>@Clair: Glad to help :)</description>
		<content:encoded><![CDATA[<p>@Clair: Glad to help <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cat for connecting files broken down via HJSplit</title>
		<link>http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6698</link>
		<dc:creator>Cat for connecting files broken down via HJSplit</dc:creator>
		<pubDate>Thu, 11 Sep 2008 07:50:43 +0000</pubDate>
		<guid isPermaLink="false">http://jedrm.wordpress.com/2007/06/27/why-you-dont-need-hjsplit-for-linux/#comment-6698</guid>
		<description>[...] to the blog post of Jed about why you don&#8217;t need HJSplit for Linux. I&#8217;ve never really had the need to split files nor join files until [...]</description>
		<content:encoded><![CDATA[<p>[...] to the blog post of Jed about why you don&#8217;t need HJSplit for Linux. I&#8217;ve never really had the need to split files nor join files until [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
