<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Gang&#039;s Tech Stuff</title>
	<atom:link href="http://gtechstuff.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gtechstuff.wordpress.com</link>
	<description>raw tech info...</description>
	<lastBuildDate>Fri, 14 Oct 2011 11:50:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gtechstuff.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Gang&#039;s Tech Stuff</title>
		<link>http://gtechstuff.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gtechstuff.wordpress.com/osd.xml" title="Gang&#039;s Tech Stuff" />
	<atom:link rel='hub' href='http://gtechstuff.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Wait for ENTER key in C++</title>
		<link>http://gtechstuff.wordpress.com/2011/05/03/wait-for-enter-key-in-c/</link>
		<comments>http://gtechstuff.wordpress.com/2011/05/03/wait-for-enter-key-in-c/#comments</comments>
		<pubDate>Tue, 03 May 2011 04:52:54 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[C/CPP]]></category>
		<category><![CDATA[cin.ignore]]></category>
		<category><![CDATA[cpp]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=62</guid>
		<description><![CDATA[There might be some instances where you want to wait for the ENTER key from the user. And with a constraint stating &#8216;not to use&#8217; any non-standard libraries. I faced this situation a while ago and found out a simple solution stated below: &#8230; std::cout &#60;&#60; &#8220;Press ENTER to continue&#8230;&#8221;; std::cin.ignore( std::numeric_limits::max(), &#8216;\n&#8217; ); &#8230; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=62&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There might be some instances where you want to wait for the ENTER key from the user. And with a constraint stating &#8216;not to use&#8217; any non-standard libraries. I faced this situation a while ago and found out a simple solution stated below:</p>
<p>&#8230;<br />
std::cout &lt;&lt; &#8220;Press ENTER to continue&#8230;&#8221;;<br />
std::cin.ignore( std::numeric_limits::max(), &#8216;\n&#8217; );<br />
&#8230;</p>
<p>Readers are kindly requested to share the different ways to achieve this task if they know!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=62&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2011/05/03/wait-for-enter-key-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>Query to see what each session is doing in Oracle</title>
		<link>http://gtechstuff.wordpress.com/2010/11/25/query-to-see-what-each-session-is-doing-in-oracle/</link>
		<comments>http://gtechstuff.wordpress.com/2010/11/25/query-to-see-what-each-session-is-doing-in-oracle/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 12:01:39 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[kill query]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=55</guid>
		<description><![CDATA[One might face a situation where he wants to know what all queries are running on an Oracle DB or may be there is a lock on a table due to a update/delete query and you want to kill that query. In such cases, you can use following query to display all the sessions, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=55&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One might face a situation where he wants to know what all queries are running on an Oracle DB or may be there is a lock on a table due to a update/delete query and you want to kill that query. In such cases, you can use following query to display all the sessions, the related queries, status, etc.<br />
<span style="font-family:Courier New;"><br />
column sid          format 999999           heading &#8216;SID&#8217;<br />
column sh           format 999999           heading &#8216;Serial#&#8217;<br />
column pid          format a18              heading &#8216;PID&#8217;<br />
column ia           format a1               heading &#8216;Active&#8217;<br />
column iw           format a1               heading &#8216;Waiting&#8217;<br />
column secs         format 999999999        heading &#8216;Seconds|In Event&#8217;<br />
column event        format a25              heading &#8216;Event&#8217;<br />
column sql          format a45              heading &#8216;SQL&#8217;<br />
set linesize 132<br />
set pagesize 50</span></p>
<p>select  s.sid sid,<br />
s.serial# sh,<br />
s.process pid,<br />
decode (s.status, &#8216;INACTIVE&#8217;, &#8216;N&#8217;, &#8216;Y&#8217;) ia,<br />
decode (sw.wait_time, 0, &#8216;Y&#8217;, &#8216;N&#8217;) iw,<br />
decode (sw.wait_time, 0, sw.seconds_in_wait, sw.seconds_in_wait-sw.wait_time/100) secs,<br />
sw.event event,<br />
decode (sq.sql_text, null, &#8216; &#8211; Not Available -&#8217;, sq.sql_text) sql<br />
from    v$session_wait sw,<br />
v$session s,<br />
v$sql sq<br />
where   s.sid = sw.sid and<br />
s.sql_hash_value = sq.hash_value(+) and<br />
s.program like &#8216;%&amp;program%&#8217;<br />
and upper(sq.sql_text) not like &#8216;%CONFIGURATION%&#8217;;</p>
<p>&nbsp;</p>
<p>And to kill a particular session, use following query:</p>
<p><span style="font-family:Courier New;">alter system kill session &#8216;&lt;Serial#&gt;,&lt;PID&gt;&#8217;;</span></p>
<p>&nbsp;</p>
<p>Hope this helps.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=55&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2010/11/25/query-to-see-what-each-session-is-doing-in-oracle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>Command to display Processors and System Conf</title>
		<link>http://gtechstuff.wordpress.com/2009/08/20/command-to-display-processors-and-system-conf/</link>
		<comments>http://gtechstuff.wordpress.com/2009/08/20/command-to-display-processors-and-system-conf/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 13:50:19 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Unix Commands]]></category>
		<category><![CDATA[display Processors]]></category>
		<category><![CDATA[dmesg]]></category>
		<category><![CDATA[prtconf]]></category>
		<category><![CDATA[psrinfo]]></category>
		<category><![CDATA[System Conf]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=48</guid>
		<description><![CDATA[Have you even wondered how many physical/virtual processors your machine is having? Well, you psrinfo is the command which can display that information. psrinfo &#8211; displays information about processors. prtconf - print system configuration. dmesg - collect system diagnostic messages to form error log. Ex: (My machine is having 4 physical processors which are divided [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=48&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have you even wondered how many physical/virtual processors your machine is having? Well, you <strong>psrinfo </strong>is the command which can display that information.</p>
<p><span style="font-family:Courier New;"><strong>psrinfo</strong></span> &#8211; displays information about processors.<br />
<span style="font-family:Courier New;"><strong>prtconf </strong></span>- print system configuration.<br />
<span style="font-family:Courier New;"><strong>dmesg </strong></span>- collect system diagnostic messages to form error log.</p>
<p>Ex:</p>
<p>(My machine is having 4 physical processors which are divided into 8 Virtual processors)<br />
<span style="font-family:Courier New;"><br />
$&gt; psrinfo -p<br />
4</span><br />
<span style="font-family:Courier New;"><br />
$&gt; psrinfo -pv<br />
The UltraSPARC-IV physical processor has 2 virtual processors (0, 16)<br />
The UltraSPARC-IV physical processor has 2 virtual processors (1, 17)<br />
The UltraSPARC-IV physical processor has 2 virtual processors (2, 18)<br />
The UltraSPARC-IV physical processor has 2 virtual processors (3, 19)<br />
</span><br />
Refer the man pages for more information on the above commands.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=48&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2009/08/20/command-to-display-processors-and-system-conf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>How to change permissions of a Clearcase element</title>
		<link>http://gtechstuff.wordpress.com/2009/06/17/how-to-change-permissions-of-a-clearcase-element/</link>
		<comments>http://gtechstuff.wordpress.com/2009/06/17/how-to-change-permissions-of-a-clearcase-element/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 05:28:50 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Clearcase]]></category>
		<category><![CDATA[clearase]]></category>
		<category><![CDATA[ct protect]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=41</guid>
		<description><![CDATA[One must be wondering how come the executable permission of a shell script file got changed after check-in. Well, at least I did when I need to re-release the patch just because of these Permissions. Usually, when we make some script file to Clearcase elements, its permission will still be maintained. But when we check-in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=41&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One must be wondering how come the executable permission of a shell script file got changed after check-in. Well, at least I did when I need to re-release the patch just because of these Permissions.</p>
<p>Usually, when we make some script file to Clearcase elements, its permission will still be maintained. But when we check-in the same file, it&#8217;ll be having Read-Only permissions.</p>
<p>So, how to retain the permissions of a file after check in also? Use &#8216;protect&#8217; option.</p>
<p><span style="font-family:Courier New;">ct protect -r -chmod 555 &lt;directory-or-file-name&gt;</span></p>
<p>Note:  &#8216;-r&#8217; option is valid only for Directories.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=41&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2009/06/17/how-to-change-permissions-of-a-clearcase-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>Converting lowercase to uppercase in Shell scripts</title>
		<link>http://gtechstuff.wordpress.com/2009/03/26/converting-lowercase-to-uppercase-in-shell-scripts/</link>
		<comments>http://gtechstuff.wordpress.com/2009/03/26/converting-lowercase-to-uppercase-in-shell-scripts/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 06:32:38 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Unix Commands]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[typeset]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=35</guid>
		<description><![CDATA[Have you ever wondered why there is no toUpper() kind of function in shell script? Well, i think the reason is typeset command. What does it do exactly? A lot: * Set a parameter as an integer by using -i option so as to fasten the arithmetic operations on that variable. * Convert to lower [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=35&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have you ever wondered why there is no toUpper() kind of function in shell script? Well, i think the reason is <strong>typeset </strong>command.</p>
<p>What does it do exactly? A lot:</p>
<p>* Set a parameter as an integer by using <strong>-i</strong> option so as to fasten the arithmetic operations on that variable.</p>
<p>* Convert to lower case using<strong> -l</strong></p>
<p>* Mark a variable as Read-only using<strong> -r</strong></p>
<p>etc&#8230;</p>
<p>Converting into upper case? Yes, you guessed it right, use<strong> -u</strong> option.</p>
<p>How to use it? You can use it before assignment or after assignment, does not make much difference.</p>
<div><span style="font-family:Courier New;">prompt $&gt; typeset -u temp_var</span></div>
<div><span style="font-family:Courier New;">prompt $&gt; temp_var=hi</span></div>
<div><span style="font-family:Courier New;">prompt $&gt; echo $temp_var</span></div>
<div><span style="font-family:Courier New;">HI</span></div>
<div><span style="font-family:Courier New;">prompt $&gt; temp_var2=hey</span></div>
<div><span style="font-family:Courier New;">prompt $&gt; typeset -u temp_var2</span></div>
<div><span style="font-family:Courier New;">prompt $&gt; echo $temp_var2</span></div>
<div><span style="font-family:Courier New;">HEY</span></div>
<p>Whats more? You can even give more that one variable to this typeset command.</p>
<div><span style="font-family:Courier New;">prompt $&gt; typeset -l temp_var temp_var2</span></div>
<div><span style="font-family:Courier New;">prompt $&gt; echo $temp_var $temp_var2</span></div>
<div><span style="font-family:Courier New;">hi hey</span></div>
<p>For more information on typeset, use <span style="font-family:Courier New;">man typeset.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=35&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2009/03/26/converting-lowercase-to-uppercase-in-shell-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>Renaming a Clearcase View</title>
		<link>http://gtechstuff.wordpress.com/2009/03/12/renaming-a-clearcase-view/</link>
		<comments>http://gtechstuff.wordpress.com/2009/03/12/renaming-a-clearcase-view/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 06:35:34 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Clearcase]]></category>
		<category><![CDATA[Unix Commands]]></category>
		<category><![CDATA[clearase]]></category>
		<category><![CDATA[rename]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=30</guid>
		<description><![CDATA[How do one can rename a Clearcase View on Unix/Linux/Solaris? Very simple, use rename command. :-p Just kiddin, never mind. Well, renaming a Clearcase View requires the renaming of both the storage and the tag. Here are the basic steps for the same but you are recomended to refer the Product Documentation if it doesn&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=30&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How do one can rename a Clearcase View on Unix/Linux/Solaris? Very simple, use rename command. :-p<br />
Just kiddin, never mind. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Well, renaming a Clearcase View requires the renaming of both the storage and the tag. Here are the basic steps for the same but you are recomended to refer the Product Documentation if it doesn&#8217;t work:</p>
<p>1. Stop the view<br />
<font face='Courier New'>PROMPT&gt; cleartool endview &lt;view-tag&gt;</font></p>
<p>2. Remove the view tag to untag the view<br />
<font face='Courier New'>PROMPT&gt; cleartool rmtag -view &lt;view-tag&gt;</font></p>
<p>3. Remove the Clearcase registry entry to unregister the view object<br />
<font face='Courier New'>PROMPT&gt; cleartool unregister -view &lt;vie-storage-path-name&gt;.vps</font></p>
<p>4. Rename the view storage directory<br />
<font face='Courier New'>PROMPT&gt; mv &lt;old-view-storage&gt;.vps &lt;new-view-storage&gt;.vps</font></p>
<p>5. Register the new name fo the view storage<br />
<font face='Courier New'>PROMPT&gt; cleartool register -view &lt;new-view-storage-path-name&gt;.vps</font></p>
<p>6. Create a new tag for the view<br />
<font face='Courier New'>PROMPT&gt; cleartool mktag -view -tag &lt;new-view-tag&gt; &lt;new-view-storage-path-name&gt;.vps</font></p>
<p>As it is on Solaris machine, no need to start the view explicitly. You can directly start working by setting the new view.</p>
<p>Note: These steps are just for rename operation. If you wish to move, not rename, the snapshot view directory which contains special files, you need to take some additional steps.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=30&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2009/03/12/renaming-a-clearcase-view/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>Perl Package Management &#8211; PPM</title>
		<link>http://gtechstuff.wordpress.com/2009/03/09/perl-package-management-ppm/</link>
		<comments>http://gtechstuff.wordpress.com/2009/03/09/perl-package-management-ppm/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 11:32:29 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[ppm]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=27</guid>
		<description><![CDATA[You can install any package using ppm command on windows. Ex: From command prompt, execute ppm: C:\perl&#62; ppm Then the prompt changes and you can install the DBI using the following command: Install DBI In the same way, you can install other packages also.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=27&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can install any package using ppm command on windows.<br />
Ex: From command prompt, execute ppm:<br />
C:\perl&gt; <strong>ppm</strong></p>
<p>Then the prompt changes and you can install the DBI using the following command:</p>
<p><strong>Install DBI</strong></p>
<p>In the same way, you can install other packages also.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=27&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2009/03/09/perl-package-management-ppm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>DOS Command to display time without prompting for New time</title>
		<link>http://gtechstuff.wordpress.com/2009/02/20/dos-command-to-display-time-in-hhmmss-format-without-prompting-for-new-time/</link>
		<comments>http://gtechstuff.wordpress.com/2009/02/20/dos-command-to-display-time-in-hhmmss-format-without-prompting-for-new-time/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 04:52:37 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[DOS Commands]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[TIME]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=19</guid>
		<description><![CDATA[I think most of us know the DOS command &#8220;time/T&#8221; which displays current system time without prompting for new time. But If one needs more granular output, say in HH:MM:SS format, here is a way out, use &#8220;echo %TIME%&#8221; which expands to current time using same format as TIME command. There are so many other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=19&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I think most of us know the DOS command &#8220;<strong>time/T</strong>&#8221; which displays current system time without prompting for new time.</p>
<p>But If one needs more granular output, say in <strong>HH:MM:SS format</strong>, here is a way out, use &#8220;<strong>echo %TIME%</strong>&#8221; which expands to current time using same format as TIME command.</p>
<p>There are so many other things which can be echoed. For example, try any of the following variables:</p>
<p>%CD% &#8211; expands to the current directory string.</p>
<p>%DATE% &#8211; expands to current date using same format as DATE command.</p>
<p>%RANDOM% &#8211; expands to a random decimal number between 0 and 32767.</p>
<p>%ERRORLEVEL% &#8211; expands to the current ERRORLEVEL value</p>
<p>%CMDEXTVERSION% &#8211; expands to the current Command Processor Extensions                 version number.</p>
<p>%CMDCMDLINE% &#8211; expands to the original command line that invoked the                 Command Processor.</p>
<p>%PATH% &#8211; expands the current PATH variable.</p>
<p>etc&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=19&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2009/02/20/dos-command-to-display-time-in-hhmmss-format-without-prompting-for-new-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>expect in Shell scripts</title>
		<link>http://gtechstuff.wordpress.com/2008/12/17/expect-in-shell-scripts/</link>
		<comments>http://gtechstuff.wordpress.com/2008/12/17/expect-in-shell-scripts/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 14:01:30 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[expect]]></category>
		<category><![CDATA[shell script]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=16</guid>
		<description><![CDATA[We can use expect to automate the interactive scripts which may expect some inputs from the user. Search in the net for more info. Following code snippet can give you can idea how an expect script may look like. The “cmdFile” may contain some commands to achieve some functionality like changing the current directory and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=16&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We can use <strong>expect </strong>to automate the interactive scripts which may expect some inputs from the user. Search in the net for more info.</p>
<p>Following code snippet can give you can idea how an expect script may look like. The “cmdFile” may contain some commands to achieve some functionality like changing the current directory and putting some files in it.</p>
<p>#!/usr/local/bin/expect</p>
<p>spawn  sftp -b cmdFile ganga_k@172.16.2.21</p>
<p>expect &#8220;password:&#8221;</p>
<p>send &#8220;password\n&#8221;;</p>
<p>interact</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=16&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2008/12/17/expect-in-shell-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
		<item>
		<title>Debug mode in SHELL scripts</title>
		<link>http://gtechstuff.wordpress.com/2008/12/17/debug-mode-in-shell-scripts/</link>
		<comments>http://gtechstuff.wordpress.com/2008/12/17/debug-mode-in-shell-scripts/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 13:56:20 +0000</pubDate>
		<dc:creator>Gangadhar</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[shell script]]></category>

		<guid isPermaLink="false">http://gtechstuff.wordpress.com/?p=14</guid>
		<description><![CDATA[To run a shell script in DEBUG mode, put “-x” option at the end of the interpreter in the first line. #!/usr/local/bin/sh –x This is going to print the steps the compiler goes through.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=14&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To run a shell script in DEBUG mode, put “<strong>-x</strong>” option at the end of the interpreter in the first line.</p>
<p>#!/usr/local/bin/sh –x</p>
<p>This is going to print the steps the compiler goes through.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtechstuff.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtechstuff.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtechstuff.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtechstuff.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtechstuff.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtechstuff.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtechstuff.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtechstuff.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtechstuff.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtechstuff.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtechstuff.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtechstuff.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtechstuff.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtechstuff.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtechstuff.wordpress.com&amp;blog=5781573&amp;post=14&amp;subd=gtechstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtechstuff.wordpress.com/2008/12/17/debug-mode-in-shell-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ca27c8fa2feccde6d5070e53bb2fa6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gangu</media:title>
		</media:content>
	</item>
	</channel>
</rss>
