<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Thanks to antville.org</title>
    <link>https://oksoft.antville.org/</link>
    <description>Adding Value with limited resources</description>
    <language>en</language>
    <pubDate>Wed, 17 Jun 2026 19:11:38 GMT</pubDate>
    <dc:date>2026-06-17T19:11:38Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>scrolling in screen</title>
      <link>https://oksoft.antville.org/stories/2127973/</link>
      <description>&lt;p&gt;We can not scroll up or down while working in screen mode. Press Ctrl-a, Esc to enter copy mode, then use standard navigation keys. Adding the following to ~/.screenrc will solve this issue.termcapinfo xterm|xterms|xs|rxvt ti@:te@&lt;/p&gt;&lt;p&gt;or add this to /etc/screenrcdefscrollback 1024&lt;/p&gt;&lt;p&gt;hardstatus onhardstatus alwayslastlinehardstatus string &amp;quot;%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %H %{..Y} %m/%d %C%a &amp;quot;&lt;/p&gt;&lt;p&gt;As a quick tip, name your screen windows using Ctrl-a A&lt;/p&gt;</description>
      <pubDate>Thu, 28 Jun 2012 05:07:17 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2127973/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2012-06-28T05:07:17Z</dc:date>
    </item>
    <item>
      <title>Curling PHP</title>
      <link>https://oksoft.antville.org/stories/2045918/</link>
      <description>&lt;p&gt;CURL can be used very effectively using PHP. Here is an example.&lt;/p&gt;&lt;h1&gt;cat curl.php&lt;/h1&gt;&lt;?php$ch = curl_init("http://www.google.com/");$fp = fopen("example.txt", "w");curl_setopt($ch, CURLOPT_FILE, $fp);curl_setopt($ch, CURLOPT_HEADER, 0);curl_exec($ch);curl_close($ch);fclose($fp);?&gt;</description>
      <pubDate>Thu, 17 Feb 2011 04:46:00 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2045918/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2011-02-17T04:46:00Z</dc:date>
    </item>
    <item>
      <title>Counting file types</title>
      <link>https://oksoft.antville.org/stories/1963907/</link>
      <description>&lt;p&gt;cat  myawk.sh#!/bin/sh&lt;/p&gt;&lt;h1&gt;list the type of files with count&lt;/h1&gt;&lt;p&gt;find ${*-.} -type f -print | xargs file |awk '{$1=NULL;t[$0]++;}END {for (i in t) printf(&amp;quot;%d\t%s\n&amp;quot;, t[i], i);}' | sort -nr&lt;/p&gt;</description>
      <pubDate>Mon, 11 Jan 2010 13:13:46 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1963907/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2010-01-11T13:13:46Z</dc:date>
    </item>
    <item>
      <title>Easy SSH</title>
      <link>https://oksoft.antville.org/stories/1956442/</link>
      <description>&lt;p&gt;HashKnownHosts noAdd the above line in your ssh_config file that can be found here..../etc/ssh/ssh_config&lt;/p&gt;</description>
      <pubDate>Fri, 18 Dec 2009 09:13:10 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1956442/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-12-18T09:13:10Z</dc:date>
    </item>
    <item>
      <title>Old date in Shell</title>
      <link>https://oksoft.antville.org/stories/1923052/</link>
      <description>&lt;p&gt;If you need to know the 3 days old date, it easy in shell.&lt;/p&gt;&lt;p&gt;$ v_prev_date=&lt;code&gt;date --date='3 days ago' +%Y%m%d&lt;/code&gt;&lt;/p&gt;&lt;p&gt;$ echo $v_prev_date20090808&lt;/p&gt;</description>
      <pubDate>Tue, 11 Aug 2009 07:20:01 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1923052/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-11T07:20:01Z</dc:date>
    </item>
    <item>
      <title>Number all lines in a file</title>
      <link>https://oksoft.antville.org/stories/1922597/</link>
      <description>&lt;p&gt;perl -pe '$_ = &amp;quot;$. $_&amp;quot;'&lt;/p&gt;&lt;p&gt;“-p” causes Perl to assume a loop around the program (specified by “-e”) that reads each line of input into the ” $_ ” variable, executes the program and then prints the ” $_ ” variable. In this one-liner I simply modify ” $_ ” and prepend the ” $. ” variable to it. The special variable ” $. ” contains the current line number of input.The result is that each line gets its line number prepended.&lt;/p&gt;</description>
      <pubDate>Sun, 09 Aug 2009 06:46:05 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1922597/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-08-09T06:46:05Z</dc:date>
    </item>
    <item>
      <title>awk power</title>
      <link>https://oksoft.antville.org/stories/1900483/</link>
      <description>&lt;p&gt;$ cat salariesYvette van der Hoff 100000Sarack Abama 400000Bernie Madoff 0John Q. Public 20000&lt;/p&gt;&lt;p&gt;$ awk '{print $NF, $0}' salaries | sort -nr -k1,1 | cut -d&amp;quot; &amp;quot; -f2-Sarack Abama 400000Yvette van der Hoff 100000John Q. Public 20000Bernie Madoff 0&lt;/p&gt;&lt;p&gt;$ awk -F '\t' -v 'OFS=\t' '{print $4, $3, $5, $2, $1}' data.txtPOP.COUNTYGOVT.CITYSTATE123GilaMayorElyAZ345LoloSheriffAlmaCA22El PasoBubbaLeroyTX&lt;/p&gt;</description>
      <pubDate>Mon, 04 May 2009 14:37:12 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1900483/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-05-04T14:37:12Z</dc:date>
    </item>
    <item>
      <title>Declare your assets!</title>
      <link>https://oksoft.antville.org/stories/1883782/</link>
      <description>&lt;p&gt;The declare command can be helpful in identifying variables, environmental or otherwise. This can be especially useful with arrays.&lt;/p&gt;&lt;p&gt;bash$ declare | grep HOME/home/bozo&lt;/p&gt;&lt;p&gt;bash$ zzy=68bash$ declare | grep zzyzzy=68&lt;/p&gt;&lt;p&gt;bash$ Colors=([0]=&amp;quot;purple&amp;quot; [1]=&amp;quot;reddish-orange&amp;quot; [2]=&amp;quot;light green&amp;quot;)bash$ echo ${Colors[@]}purple reddish-orange light greenbash$ declare | grep ColorsColors=([0]=&amp;quot;purple&amp;quot; [1]=&amp;quot;reddish-orange&amp;quot; [2]=&amp;quot;light green&amp;quot;)&lt;/p&gt;</description>
      <pubDate>Sun, 01 Mar 2009 13:18:14 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1883782/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-03-01T13:18:14Z</dc:date>
    </item>
  </channel>
</rss>

