<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Thanks to antville.org</title>
    <link>http://oksoft.antville.org/</link>
    <description>Adding Value with limited resources</description>
    <language>en-IN</language>
    <pubDate>Fri, 19 Mar 2010 12:30:39 GMT</pubDate>
    <dc:date>2010-03-19T12:30:39Z</dc:date>
    <dc:language>en-IN</dc:language>
    <item>
      <title>Upgrade PEAR</title>
      <link>http://oksoft.antville.org/stories/1981953/</link>
      <description>I spent a lot of time figuring out how to upgrade my PEAR package.&lt;br /&gt;&amp;#10;The trick is to install the PEAR package with &amp;#8211;force to make it go through&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;# pear upgrade --force PEAR&amp;#10;</description>
      <pubDate>Fri, 19 Mar 2010 07:28:23 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1981953/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2010-03-19T07:28:23Z</dc:date>
    </item>
    <item>
      <title>Improve the bash history</title>
      <link>http://oksoft.antville.org/stories/1841361/</link>
      <description>If you use two bash sessions at the same time, which ever you close second will write over the commands you&amp;#8217;ve typed in the first one. That means that your history is lost for one of the sessions. Annoying to say the least. Luckily there is a way to fix this.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;Open your .bashrc file as detailed above and add the lines:&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;shopt -s histappend&lt;br /&gt;&amp;#10;PROMPT_COMMAND='history -a'&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;This will append any new history to the existing file rather than rewriting it, as well as adding to the history every time the prompt is shown. Now, all your history will be saved!&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;&lt;a href="http://www.bradshawenterprises.com/blog/2008/09/27/5-ways-to-make-using-bash-more-productive/" title="http://www.bradshawenterprises.com/blog/2008/09/27/5-ways-to-make-using-bash-more-productive/"&gt;www.bradshawenterprises.com&lt;/a&gt;&lt;br /&gt;&amp;#10;_____&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;If you want to know the date when the command was executed...&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;$ HISTTIMEFORMAT="%d/%m/%y %T "&lt;br /&gt;&amp;#10;OR&lt;br /&gt;&amp;#10;$ echo 'export HISTTIMEFORMAT="%d/%m/%y %T "' &amp;gt;&amp;gt; ~/.bash_profile&amp;#10;</description>
      <pubDate>Thu, 02 Oct 2008 12:09:04 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1841361/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-10-02T12:09:04Z</dc:date>
    </item>
    <item>
      <title>Counting file types</title>
      <link>http://oksoft.antville.org/stories/1963907/</link>
      <description>cat  myawk.sh &lt;br /&gt;&amp;#10;#!/bin/sh&lt;br /&gt;&amp;#10;# list the type of files with count &lt;br /&gt;&amp;#10;find ${*-.} -type f -print | xargs file | &lt;br /&gt;&amp;#10;awk '{&lt;br /&gt;&amp;#10;$1=NULL;&lt;br /&gt;&amp;#10;t[$0]++;&lt;br /&gt;&amp;#10;}&lt;br /&gt;&amp;#10;END {&lt;br /&gt;&amp;#10;for (i in t) printf("%d\t%s\n", t[i], i);&lt;br /&gt;&amp;#10;}' | sort -nr&amp;#10;</description>
      <pubDate>Mon, 11 Jan 2010 13:13:46 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1963907/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2010-01-11T13:13:46Z</dc:date>
    </item>
    <item>
      <title>show processlist</title>
      <link>http://oksoft.antville.org/stories/1959586/</link>
      <description>ps aux&lt;br /&gt;&amp;#10;When you run ps you will only get the first 40 or so characters displayed. In order to view the entire string, use ...&lt;br /&gt;&amp;#10;ps auxgww&amp;#10;</description>
      <pubDate>Tue, 29 Dec 2009 04:20:21 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1959586/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-12-29T04:20:21Z</dc:date>
    </item>
    <item>
      <title>Which Linux?</title>
      <link>http://oksoft.antville.org/stories/1957574/</link>
      <description>If you're a Linux expert, Fedora is for you. If you just want a good, general-purpose desktop for home or work, then openSUSE is your best pick. And if you're new to Linux, and your computer gets along well with Ubuntu, Ubuntu is still a good choice.&lt;br /&gt;&amp;#10;Knoppix if you want to use Linux off a live CD and puppy linux is for everyone!!&amp;#10;</description>
      <pubDate>Wed, 23 Dec 2009 08:52:28 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1957574/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-12-23T08:52:28Z</dc:date>
    </item>
    <item>
      <title>Killing processes</title>
      <link>http://oksoft.antville.org/stories/1957569/</link>
      <description>You can enter the "kill" command in a terminal if a process hangs.&lt;br /&gt;&amp;#10;kill ID&lt;br /&gt;&amp;#10;kill -9 ID&lt;br /&gt;&amp;#10;pkill firefox&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;You can switch to a virtual terminal using Ctrl + Alt + F1 if the user interface does not allow you to start the terminal.&lt;br /&gt;&amp;#10;This should hopefully restore some sanity to your computer and you can switch back to the GUI using Ctrl + Alt + F7&amp;#10;</description>
      <pubDate>Wed, 23 Dec 2009 08:36:59 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1957569/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-12-23T08:36:59Z</dc:date>
    </item>
    <item>
      <title>vim syntax</title>
      <link>http://oksoft.antville.org/stories/1956494/</link>
      <description>behave mswin - Copy and Paste with Ctrl+C CtrlV &lt;br /&gt;&amp;#10;set laststatus=2 - grey status bar at the bottom&lt;br /&gt;&amp;#10;syntax on - syntax highlighting&lt;br /&gt;&amp;#10;set autoindent - auto indenting&lt;br /&gt;&amp;#10;set number - line numbers&lt;br /&gt;&amp;#10;set showcmd - show command in status line&lt;br /&gt;&amp;#10;set showmatch - show matching brackets&lt;br /&gt;&amp;#10;set ignorecase - do case insensitive matching&lt;br /&gt;&amp;#10;set hlsearch - highlight what you search for&amp;#10;</description>
      <pubDate>Fri, 18 Dec 2009 12:07:54 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1956494/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-12-18T12:07:54Z</dc:date>
    </item>
    <item>
      <title>sed can make you sad!</title>
      <link>http://oksoft.antville.org/stories/1923161/</link>
      <description>Changing the -e to -i in the following can be disastrous. It will replace the character "g" from all text files found in current directory as well as subfolder.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;$ find . -name "*.txt" -exec sed -e 's/g//g' {} \;&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;Be careful with sed's -i option&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;___&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;It can also be very useful to change a string across all files...&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;select.worldpay.com/wcc/purchase &lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;replace this with the new string &lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;select.wp3.rbsworldpay.com/wcc/purchase/ &lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;The command would be...&lt;br /&gt;&amp;#10;grep 'select.worldpay.com/wcc/purchase' . -Rl | xargs sed -i 's/select.worldpay.com\/wcc\/purchase/select.wp3.rbsworldpay.com\/wcc\/purchase/g'&amp;#10;</description>
      <pubDate>Tue, 11 Aug 2009 15:38:02 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1923161/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-11T15:38:02Z</dc:date>
    </item>
    <item>
      <title>Easy SSH</title>
      <link>http://oksoft.antville.org/stories/1956442/</link>
      <description>HashKnownHosts no&lt;br /&gt;&amp;#10;Add the above line in your ssh_config file that can be found here....&lt;br /&gt;&amp;#10;/etc/ssh/ssh_config&amp;#10;</description>
      <pubDate>Fri, 18 Dec 2009 09:13:10 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1956442/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-12-18T09:13:10Z</dc:date>
    </item>
    <item>
      <title>Inernal File Separator</title>
      <link>http://oksoft.antville.org/stories/1952009/</link>
      <description>The safe way to change IFS in a 'while read' loop is:&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;while IFS=\| read a b c&lt;br /&gt;&amp;#10;do &lt;br /&gt;&amp;#10;: whatever&lt;br /&gt;&amp;#10;done&amp;#10;</description>
      <pubDate>Tue, 01 Dec 2009 11:37:01 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1952009/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-12-01T11:37:01Z</dc:date>
    </item>
    <item>
      <title>Overwriting files</title>
      <link>http://oksoft.antville.org/stories/1949123/</link>
      <description>output redirection using n&amp;gt; usually overwrites existing files. You can control this with the noclobber option of the set builtin. If it has been set, you can override it using n&amp;gt;| &lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;$ set -o noclobber&lt;br /&gt;&amp;#10;$ ls x* z* &amp;gt;stdout.txt 2&amp;gt;stderr.txt&lt;br /&gt;&amp;#10;-bash: stdout.txt: cannot overwrite existing file&lt;br /&gt;&amp;#10;$ ls x* z* &amp;gt;|stdout.txt 2&amp;gt;|stderr.txt&lt;br /&gt;&amp;#10;$ set +o noclobber&amp;#10;</description>
      <pubDate>Sat, 21 Nov 2009 11:45:18 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1949123/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-11-21T11:45:18Z</dc:date>
    </item>
    <item>
      <title>send messages across network</title>
      <link>http://oksoft.antville.org/stories/1948412/</link>
      <description>The following command can be used to send messages to remote servers.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;ssh -X root@123.123.123.123 'DISPLAY=:0 notify-send "TEST MESSAGE."'&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;The command that actually sends the message is...&lt;br /&gt;&amp;#10;notify-send "hi vandana"&amp;#10;</description>
      <pubDate>Thu, 19 Nov 2009 13:04:36 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1948412/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-11-19T13:04:36Z</dc:date>
    </item>
    <item>
      <title>power of wget</title>
      <link>http://oksoft.antville.org/stories/1938823/</link>
      <description>wget is really a very powerful utility. Here is an example.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;wget -mk &lt;a href="http://oksoft.antville.org" title="http://oksoft.antville.org"&gt;oksoft.antville.org&lt;/a&gt;&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;I can download all the pages linked from my blog. And it is so easy!&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;-m (--mirror) Turn on options suitable for mirroring.  This option turns on recursion and time-stamping, sets infinite recursion depth and keeps FTP directory list&amp;#8208;ings.  It is currently equivalent to -r -N -l inf --no-remove-listing.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;-k (--convert-links) After the download is complete, convert the links in the document to make them suitable for local viewing.&amp;#10;</description>
      <pubDate>Sun, 18 Oct 2009 04:16:07 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1938823/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-10-18T04:16:07Z</dc:date>
    </item>
    <item>
      <title>Silence of the Foxes</title>
      <link>http://oksoft.antville.org/stories/1931011/</link>
      <description>This simple Firefox tool lets you create custom Firefox installers which you can use to deploy Firefox&amp;#8217;s preconfigured settings and add-ons.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;&lt;a href="http://www.msfn.org/board/silence-foxes-t43168.html" title="http://www.msfn.org/board/silence-foxes-t43168.html"&gt;www.msfn.org&lt;/a&gt;&amp;#10;</description>
      <pubDate>Sun, 13 Sep 2009 14:00:16 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1931011/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-09-13T14:00:16Z</dc:date>
    </item>
    <item>
      <title>Zoom in Ubuntu</title>
      <link>http://oksoft.antville.org/stories/1925658/</link>
      <description>I can change the tabs in firefox by using Alt + 2 or Alt + 3 or alt + 4 etc. I accidentally found today that Window key + 2 can be used to zoom in! Window key + 1 is for Normal screen size.&amp;#10;</description>
      <pubDate>Sun, 23 Aug 2009 02:19:04 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1925658/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-23T02:19:04Z</dc:date>
    </item>
    <item>
      <title>Google Calculator</title>
      <link>http://oksoft.antville.org/stories/1924139/</link>
      <description>&amp;gt;&amp;gt; 24685316 kb in MB &lt;br /&gt;&amp;#10;shows the wrong results:&lt;br /&gt;&amp;#10;24 685 316 kilobits = 3 013.34424 megabytes&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;I should have typed KB in capital to find the correct MB count&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;&amp;gt;&amp;gt; 24685316 KB in MB&lt;br /&gt;&amp;#10;24 685 316 kilobytes = 24 106.7539 megabytes&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;(Note the spelling difference in kilobits and kilobytes!)&amp;#10;</description>
      <pubDate>Sun, 16 Aug 2009 07:34:04 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1924139/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-16T07:34:04Z</dc:date>
    </item>
    <item>
      <title>Old date in Shell</title>
      <link>http://oksoft.antville.org/stories/1923052/</link>
      <description>If you need to know the 3 days old date, it easy in shell.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;$ v_prev_date=`date --date='3 days ago' +%Y%m%d`&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;$ echo $v_prev_date&lt;br /&gt;&amp;#10;20090808&amp;#10;</description>
      <pubDate>Tue, 11 Aug 2009 07:20:01 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1923052/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-11T07:20:01Z</dc:date>
    </item>
    <item>
      <title>Finding in Linux</title>
      <link>http://oksoft.antville.org/stories/1922780/</link>
      <description>I was looking for the file translate.html from my backup drives, e: and f:&lt;br /&gt;&amp;#10;Since it was taking some time on Windows system, I stared the live session of Ubuntu and used the following command after touching both the drives from "Places" menu.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;find /media/ -name translate.html&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;Very fast and accurate results!&amp;#10;</description>
      <pubDate>Mon, 10 Aug 2009 07:26:40 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1922780/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-10T07:26:40Z</dc:date>
    </item>
    <item>
      <title>Number all lines in a file</title>
      <link>http://oksoft.antville.org/stories/1922597/</link>
      <description>perl -pe '$_ = "$. $_"'&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;&amp;#8220;-p&amp;#8221; causes Perl to assume a loop around the program (specified by &amp;#8220;-e&amp;#8221;) that reads each line of input into the &amp;#8221; $_ &amp;#8221; variable, executes the program and then prints the &amp;#8221; $_ &amp;#8221; variable. In this one-liner I simply modify &amp;#8221; $_ &amp;#8221; and prepend the &amp;#8221; $. &amp;#8221; variable to it. The special variable &amp;#8221; $. &amp;#8221; contains the current line number of input.&lt;br /&gt;&amp;#10;The result is that each line gets its line number prepended.&amp;#10;</description>
      <pubDate>Sun, 09 Aug 2009 06:46:05 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1922597/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-09T06:46:05Z</dc:date>
    </item>
    <item>
      <title>Ubuntu Root</title>
      <link>http://oksoft.antville.org/stories/1922596/</link>
      <description>The root account is disabled by default on Ubuntu installations, mainly to prevent you from doing something you didn&amp;#8217;t intend to do. &lt;br /&gt;&amp;#10;You can enable root account as follows:&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;1. Type sudo passwd root and provide a root password.&lt;br /&gt;&amp;#10;2. Then head on over to System &amp;gt; Administration &amp;gt; Login Window, go to the Security tab and check &amp;#8220;Enable local system administrator login&amp;#8221;&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;You should now be able to login as root from the Login prompt. As an alternative you can use &amp;#8220;sudo su&amp;#8221; to provide your password and get root prompt.&amp;#10;</description>
      <pubDate>Sun, 09 Aug 2009 06:05:26 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1922596/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-09T06:05:26Z</dc:date>
    </item>
    <item>
      <title>Starting Ubuntu</title>
      <link>http://oksoft.antville.org/stories/1922595/</link>
      <description>You can make Ubuntu remember the applications you had open when you last logged out, so that when you log back in again you&amp;#8217;ll find all those applications running and you can resume right from where you left off.&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;To achieve this go to System &amp;gt; Preferences &amp;gt; Startup Applications, then go to the options tab and check &amp;#8220;Automatically remember running applications when logging out&amp;#8221;&amp;#10;</description>
      <pubDate>Sun, 09 Aug 2009 06:01:13 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1922595/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-09T06:01:13Z</dc:date>
    </item>
    <item>
      <title>Export to Excel</title>
      <link>http://oksoft.antville.org/stories/1922241/</link>
      <description>Just create a regular .PHP file, where you output your data in a nice little html-table. Then place the following snippet in the top of that file:&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;header("Content-type: application/vnd.ms-excel");&lt;br /&gt;&amp;#10;header("Content-Disposition: attachment; filename=excel.xls");&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;And it&amp;#8217;s just that easy. If you open the page, you&amp;#8217;ll see a download-window asking you where to place the file.&amp;#10;</description>
      <pubDate>Fri, 07 Aug 2009 07:57:11 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1922241/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-07T07:57:11Z</dc:date>
    </item>
    <item>
      <title>Gmail in Firefox</title>
      <link>http://oksoft.antville.org/stories/1915909/</link>
      <description>You can set Gmail as Default Email Client in Firefox&lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;* go to Tools &amp;gt; Options&lt;br /&gt;&amp;#10;* select the Applications tab&lt;br /&gt;&amp;#10;* search for mail&lt;br /&gt;&amp;#10;* select Use Gmail from the list of actions associated with the mailto protocol&lt;br /&gt;&amp;#10;* click OK to save the settings.&amp;#10;</description>
      <pubDate>Tue, 07 Jul 2009 14:37:23 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1915909/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-07-07T14:37:23Z</dc:date>
    </item>
    <item>
      <title>tmpdir in MySQL</title>
      <link>http://oksoft.antville.org/stories/1911866/</link>
      <description>In MySQL, the tmpdir path is mainly used for disk-based sorts (if the sort_buffer_size is not enough) and disk-based temp tables. &lt;br /&gt;&amp;#10;&lt;br /&gt;&amp;#10;You can configure a slave with tmpdir=/dev/shm&amp;#10;</description>
      <pubDate>Sat, 20 Jun 2009 01:52:21 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1911866/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-06-20T01:52:21Z</dc:date>
    </item>
    <item>
      <title>Install SQLite</title>
      <link>http://oksoft.antville.org/stories/1902886/</link>
      <description>$ # As of March 2009, the latest version was 3.6.11. &lt;br /&gt;&amp;#10;$ wget &lt;a href="http://www.sqlite.org/sqlite-amalgamation-3.6.11.tar.gz" title="http://www.sqlite.org/sqlite-amalgamation-3.6.11.tar.gz"&gt;www.sqlite.org&lt;/a&gt;&lt;br /&gt;&amp;#10;$ tar xzf sqlite-amalgamation-3.6.11.tar.gz&lt;br /&gt;&amp;#10;$ cd sqlite-3.6.11&lt;br /&gt;&amp;#10;$ ./configure &amp;amp;&amp;amp; make &lt;br /&gt;&amp;#10;$ sudo make install&amp;#10;</description>
      <pubDate>Wed, 13 May 2009 13:54:10 GMT</pubDate>
      <guid>http://oksoft.antville.org/stories/1902886/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-05-13T13:54:10Z</dc:date>
    </item>
  </channel>
</rss>

