<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>txt</title>
	
	<link>http://txt.binnyva.com</link>
	<description>Text snippets collection of BinnyVA</description>
	<pubDate>Sun, 06 Jul 2008 18:19:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/binnyva/txt" type="application/rss+xml" /><item>
		<title>NIC Card Configuration</title>
		<link>http://txt.binnyva.com/2008/07/nic-card-configuration/</link>
		<comments>http://txt.binnyva.com/2008/07/nic-card-configuration/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 18:19:44 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Configuration]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[card]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[ifconfig]]></category>

		<category><![CDATA[network]]></category>

		<category><![CDATA[nic]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=291</guid>
		<description><![CDATA[Show configuration of an ethernet network card

ifconfig eth0

]]></description>
			<content:encoded><![CDATA[<p class="intro">Show configuration of an ethernet network card</p>
<pre><code class="cli">
ifconfig eth0
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/07/nic-card-configuration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fetch a URL With a Number Series</title>
		<link>http://txt.binnyva.com/2008/07/fetch-a-url-with-a-number-series/</link>
		<comments>http://txt.binnyva.com/2008/07/fetch-a-url-with-a-number-series/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 18:04:05 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[internet]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[for]]></category>

		<category><![CDATA[number]]></category>

		<category><![CDATA[url]]></category>

		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=290</guid>
		<description><![CDATA[Use this command to download numbered content&#8230;

for ((i=1; i]]></description>
			<content:encoded><![CDATA[<p class="intro">Use this command to download numbered content&#8230;</p>
<pre><code class="cli">
for ((i=1; i<9; i++)) ; do  wget "http://www.example.com/$i.txt" ; done
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/07/fetch-a-url-with-a-number-series/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zero Padding In Linux Commands</title>
		<link>http://txt.binnyva.com/2008/07/zero-padding-in-linux-commands/</link>
		<comments>http://txt.binnyva.com/2008/07/zero-padding-in-linux-commands/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 18:01:21 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[for]]></category>

		<category><![CDATA[number]]></category>

		<category><![CDATA[pad]]></category>

		<category><![CDATA[padding]]></category>

		<category><![CDATA[printf]]></category>

		<category><![CDATA[zero]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=289</guid>
		<description><![CDATA[This is how you zero pad a numerical variable in bash.

for ((x=1;x< =31;x+=1)); do echo `printf "%02d" $x`; done

Original Article
]]></description>
			<content:encoded><![CDATA[<p class="intro">This is how you zero pad a numerical variable in bash.</p>
<pre><code class="cli">
for ((x=1;x< =31;x+=1)); do echo `printf "%02d" $x`; done
</code></pre>
<p><a href="http://jonathanwagner.net/2007/04/zero-padding-in-bash/">Original Article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/07/zero-padding-in-linux-commands/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create ISO Image of a Folder</title>
		<link>http://txt.binnyva.com/2008/06/create-iso-image-of-a-folder/</link>
		<comments>http://txt.binnyva.com/2008/06/create-iso-image-of-a-folder/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 18:04:00 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[cd]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[dvd]]></category>

		<category><![CDATA[folder]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[iso]]></category>

		<category><![CDATA[mkisofs]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=287</guid>
		<description><![CDATA[Create an iso image of a directory

mkisofs -J -allow-leading-dots -R -V "Label CD" -iso-level 4 -o ./cd.iso data_cd

]]></description>
			<content:encoded><![CDATA[<p class="intro">Create an iso image of a directory</p>
<pre><code class="cli">
mkisofs -J -allow-leading-dots -R -V "Label CD" -iso-level 4 -o ./cd.iso data_cd
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/06/create-iso-image-of-a-folder/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Uncompressing a BZ2 File</title>
		<link>http://txt.binnyva.com/2008/06/uncompressing-a-bz2-file/</link>
		<comments>http://txt.binnyva.com/2008/06/uncompressing-a-bz2-file/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 17:59:08 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[bunzip2]]></category>

		<category><![CDATA[bz2]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[compress]]></category>

		<category><![CDATA[uncompress]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=286</guid>
		<description><![CDATA[Decompress a file called &#8216;file.bz2&#8242;

bunzip2 file.bz2

]]></description>
			<content:encoded><![CDATA[<p class="intro">Decompress a file called &#8216;file.bz2&#8242;</p>
<pre><code class="cli">
bunzip2 file.bz2
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/06/uncompressing-a-bz2-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>XMLStarlet</title>
		<link>http://txt.binnyva.com/2008/06/xmlstarlet/</link>
		<comments>http://txt.binnyva.com/2008/06/xmlstarlet/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 18:15:39 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[xml]]></category>

		<category><![CDATA[xmlstartlet]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=284</guid>
		<description><![CDATA[Using XMLStarlet...

 curl -s 'http://bashcurescancer.com/rss/' &#124; xml sel -t -m '//link' -v '.' -n
http://bashcurescancer.com

http://bashcurescancer.com/processing-xml-on-the-command-line.html
http://bashcurescancer.com/do-not-close-stderr.html
http://bashcurescancer.com/prepend-to-a-file-with-sponge-from-moreutils.html
http://bashcurescancer.com/bug-in-curl-is-fixed.html
http://bashcurescancer.com/using-kill-to-see-if-a-process-is-alive.html
http://bashcurescancer.com/performance-testing-with-curl.html
http://bashcurescancer.com/new-command-prepend.html
...

]]></description>
			<content:encoded><![CDATA[<p class="intro">Using <a href="http://bashcurescancer.com/the-best-in-command-line-xml-xmlstarlet.html">XMLStarlet.</a>..</p>
<pre><code class="cli">
 curl -s 'http://bashcurescancer.com/rss/' | xml sel -t -m '//link' -v '.' -n
http://bashcurescancer.com

http://bashcurescancer.com/processing-xml-on-the-command-line.html
http://bashcurescancer.com/do-not-close-stderr.html
http://bashcurescancer.com/prepend-to-a-file-with-sponge-from-moreutils.html
http://bashcurescancer.com/bug-in-curl-is-fixed.html
http://bashcurescancer.com/using-kill-to-see-if-a-process-is-alive.html
http://bashcurescancer.com/performance-testing-with-curl.html
http://bashcurescancer.com/new-command-prepend.html
...
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/06/xmlstarlet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My KMix Settings</title>
		<link>http://txt.binnyva.com/2008/06/my-kmix-settings/</link>
		<comments>http://txt.binnyva.com/2008/06/my-kmix-settings/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 18:21:27 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Configuration]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[internet]]></category>

		<category><![CDATA[alsa]]></category>

		<category><![CDATA[audio]]></category>

		<category><![CDATA[kmix]]></category>

		<category><![CDATA[mic]]></category>

		<category><![CDATA[microphone]]></category>

		<category><![CDATA[skype]]></category>

		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=276</guid>
		<description><![CDATA[This kmix setting will setup your microphone for recording. I got it thru trial and error - its not perfect&#8230;


]]></description>
			<content:encoded><![CDATA[<p class="intro">This kmix setting will setup your microphone for recording. I got it thru trial and error - its not perfect&#8230;</p>
<p><img src="http://txt.binnyva.com/wp-content/uploads/2008/06/kmix_input.png" alt="" title="Kmix Input" width="500" height="213" class="alignnone size-full wp-image-277" /><br />
<img src="http://txt.binnyva.com/wp-content/uploads/2008/06/kmix_output.png" alt="" title="Kmix Output" width="500" height="213" class="alignnone size-full wp-image-278" /></p>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/06/my-kmix-settings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compare contents of two files</title>
		<link>http://txt.binnyva.com/2008/06/compare-contents-of-two-files/</link>
		<comments>http://txt.binnyva.com/2008/06/compare-contents-of-two-files/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 17:03:22 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[comm]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[compare]]></category>

		<category><![CDATA[diff]]></category>

		<category><![CDATA[file]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=283</guid>
		<description><![CDATA[Compare contents of two files by deleting only unique lines from &#8216;file1&#8242;

comm -1 file1 file2

]]></description>
			<content:encoded><![CDATA[<p class="intro">Compare contents of two files by deleting only unique lines from &#8216;file1&#8242;</p>
<pre><code class="cli">
comm -1 file1 file2
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/06/compare-contents-of-two-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Uncompressed Tarball</title>
		<link>http://txt.binnyva.com/2008/06/uncompressed-tarball/</link>
		<comments>http://txt.binnyva.com/2008/06/uncompressed-tarball/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 17:27:13 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Command Line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[compress]]></category>

		<category><![CDATA[tar]]></category>

		<category><![CDATA[tarball]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=282</guid>
		<description><![CDATA[Create a uncompressed tarball

tar -cvf archive.tar file

]]></description>
			<content:encoded><![CDATA[<p class="intro">Create a uncompressed tarball</p>
<pre><code class="cli">
tar -cvf archive.tar file
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/06/uncompressed-tarball/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Text type convert</title>
		<link>http://txt.binnyva.com/2008/06/text-type-convert/</link>
		<comments>http://txt.binnyva.com/2008/06/text-type-convert/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 18:00:24 +0000</pubDate>
		<dc:creator>Binny V A</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[dos]]></category>

		<category><![CDATA[dos2unix]]></category>

		<category><![CDATA[eol]]></category>

		<category><![CDATA[line]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[text]]></category>

		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://txt.binnyva.com/?p=281</guid>
		<description><![CDATA[Convert a text file format from MSDOS to UNIX

dos2unix input_file output_file

]]></description>
			<content:encoded><![CDATA[<p class="intro">Convert a text file format from MSDOS to UNIX</p>
<pre><code class="cli">
dos2unix input_file output_file
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://txt.binnyva.com/2008/06/text-type-convert/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
