<?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/"
		>
<channel>
	<title>Comments on: How to show ssh host name on the iTerm&#8217;s background</title>
	<atom:link href="http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/feed/" rel="self" type="application/rss+xml" />
	<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/</link>
	<description>In my blog I'll try to describe about interesting technologies, my discovery in IT and some useful things about programming.</description>
	<lastBuildDate>Tue, 29 Dec 2009 10:34:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrew McFague</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-283424</link>
		<dc:creator>Andrew McFague</dc:creator>
		<pubDate>Fri, 12 Mar 2010 19:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-283424</guid>
		<description>Wait!  I realized a mistake; ssh doesn&#039;t always exit with a 0 status, even though it may be a normal exit.  To make it a little clearer, the following worked:

[cc_bash]
# First, check to see if we have the correct terminal!
if [ &quot;$( tty )&quot; == &#039;not a tty&#039; ] ; then
    /usr/bin/ssh &quot;$@&quot;
    exit
fi
[/cc_bash]</description>
		<content:encoded><![CDATA[<p>Wait!  I realized a mistake; ssh doesn&#8217;t always exit with a 0 status, even though it may be a normal exit.  To make it a little clearer, the following worked:</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># First, check to see if we have the correct terminal!</span><br />
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$( tty )</span>&quot;</span> == <span style="color: #ff0000;">'not a tty'</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> ; <span style="color: #000000; font-weight: bold;">then</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #ff0000;">&quot;$@&quot;</span><br />
&nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">exit</span><br />
<span style="color: #000000; font-weight: bold;">fi</span></div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmytro Shteflyuk</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-283420</link>
		<dc:creator>Dmytro Shteflyuk</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-283420</guid>
		<description>That&#039;s sweet, thank you! Will test on my machine and update the post. Good work!</description>
		<content:encoded><![CDATA[<p>That&#8217;s sweet, thank you! Will test on my machine and update the post. Good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew McFague</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-283419</link>
		<dc:creator>Andrew McFague</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-283419</guid>
		<description>A quick improvement I had to implement when dealing with non-terminal windows (i.e., bash scripts):

[cc_bash]
# First, check to see if we have the correct terminal!
[ &quot;$( tty )&quot; == &#039;not a tty&#039; ] &amp;&amp; /usr/bin/ssh &quot;$@&quot; &amp;&amp; exit

# Generate dimension based on screensize
H=$((1440 / 178 * `stty size &#124; cut -d &#039; &#039; -f2` ))
V=$((900 / 47 * `stty size &#124; cut -d &#039; &#039; -f2` ))
DIMENSIONS=$H&quot;x&quot;$V    # Console dimensions
[/cc_bash]

This uses the the tty variable to detect whether or not its a terminal session, so it won&#039;t try and grab the screen size from stdin-less sessions.  Note, this depends on the tty variable being set which, from my basic testing, works flawlessly on bash-3.2.

Andrew</description>
		<content:encoded><![CDATA[<p>A quick improvement I had to implement when dealing with non-terminal windows (i.e., bash scripts):</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># First, check to see if we have the correct terminal!</span><br />
<span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$( tty )</span>&quot;</span> == <span style="color: #ff0000;">'not a tty'</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #ff0000;">&quot;$@&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">exit</span><br />
<br />
<span style="color: #666666; font-style: italic;"># Generate dimension based on screensize</span><br />
<span style="color: #007800;">H</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>1440 <span style="color: #000000; font-weight: bold;">/</span> 178 <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">stty</span> <span style="color: #c20cb9; font-weight: bold;">size</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">' '</span> -f2<span style="color: #000000; font-weight: bold;">`</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #007800;">V</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>900 <span style="color: #000000; font-weight: bold;">/</span> 47 <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">stty</span> <span style="color: #c20cb9; font-weight: bold;">size</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">' '</span> -f2<span style="color: #000000; font-weight: bold;">`</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #007800;">DIMENSIONS</span>=<span style="color: #007800;">$H</span><span style="color: #ff0000;">&quot;x&quot;</span><span style="color: #007800;">$V</span> &nbsp; &nbsp;<span style="color: #666666; font-style: italic;"># Console dimensions</span></div></td></tr></tbody></table></div>
<p>This uses the the tty variable to detect whether or not its a terminal session, so it won&#8217;t try and grab the screen size from stdin-less sessions.  Note, this depends on the tty variable being set which, from my basic testing, works flawlessly on bash-3.2.</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew McFague</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-283337</link>
		<dc:creator>Andrew McFague</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-283337</guid>
		<description>I loved this, but the problem is, I use a fullscreen monitor specifically for SSH at work, but I only have my regular laptop screen at home.  So, of course, the background would be extremely distorted.

So I came up with the following; this should net you the approximate resolution by converting the rows/columns to a resolution.  I simply used the ratio of the columns/rows to the resolution on my laptop:

[cc_bash]
# Generate dimension based on screensize
H=$((1440/178*`stty size &#124; cut -d &#039; &#039; -f2`))
V=$((900/47*`stty size &#124; cut -d &#039; &#039; -f1`))
DIMENSIONS=$H&quot;x&quot;$V
[/cc_bash]

Its not foolproof, but its very dynamic and works great for me! :)

Andrew</description>
		<content:encoded><![CDATA[<p>I loved this, but the problem is, I use a fullscreen monitor specifically for SSH at work, but I only have my regular laptop screen at home.  So, of course, the background would be extremely distorted.</p>
<p>So I came up with the following; this should net you the approximate resolution by converting the rows/columns to a resolution.  I simply used the ratio of the columns/rows to the resolution on my laptop:</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># Generate dimension based on screensize</span><br />
<span style="color: #007800;">H</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>1440<span style="color: #000000; font-weight: bold;">/</span>178<span style="color: #000000; font-weight: bold;">*`</span><span style="color: #c20cb9; font-weight: bold;">stty</span> <span style="color: #c20cb9; font-weight: bold;">size</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">' '</span> -f2<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #007800;">V</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>900<span style="color: #000000; font-weight: bold;">/</span>47<span style="color: #000000; font-weight: bold;">*`</span><span style="color: #c20cb9; font-weight: bold;">stty</span> <span style="color: #c20cb9; font-weight: bold;">size</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cut</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">' '</span> -f1<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<span style="color: #007800;">DIMENSIONS</span>=<span style="color: #007800;">$H</span><span style="color: #ff0000;">&quot;x&quot;</span><span style="color: #007800;">$V</span></div></td></tr></tbody></table></div>
<p>Its not foolproof, but its very dynamic and works great for me! :)</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Vasquez</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-283024</link>
		<dc:creator>Doug Vasquez</dc:creator>
		<pubDate>Fri, 12 Mar 2010 18:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-283024</guid>
		<description>Great tip, thanks for sharing!

I did discover an error when attempting to run in snow leopard (v10.6.1):

[cc]
Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find:
/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper
osascript: OpenScripting.framework - scripting addition &quot;/Library/ScriptingAdditions/Adobe Unit Types.osax&quot; declares no loadable handlers.
[/cc]

After a quick google search, I ran into a post (http://forums.adobe.com/thread/486208) that suggested prefixing the osascript command with the appropriate supported architecture:

[cc_bash]arch -i386 osascript ...[/cc_bash]

So if anyone runs into this issue, just change the following line:

[cc_bash]osascript -e &quot;tell application \&quot;iTerm\&quot;[/cc_bash]

with this:

[cc_bash]arch -i386 osascript -e &quot;tell application \&quot;iTerm\&quot;[/cc_bash]</description>
		<content:encoded><![CDATA[<p>Great tip, thanks for sharing!</p>
<p>I did discover an error when attempting to run in snow leopard (v10.6.1):</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: &nbsp;dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found. &nbsp;Did find:<br />
/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper<br />
osascript: OpenScripting.framework - scripting addition &quot;/Library/ScriptingAdditions/Adobe Unit Types.osax&quot; declares no loadable handlers.</div></td></tr></tbody></table></div>
<p>After a quick google search, I ran into a post (<a href="http://forums.adobe.com/thread/486208" rel="nofollow">http://forums.adobe.com/thread/486208</a>) that suggested prefixing the osascript command with the appropriate supported architecture:</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">arch</span> <span style="color: #660033;">-i386</span> osascript ...</div></td></tr></tbody></table></div>
<p>So if anyone runs into this issue, just change the following line:</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">osascript <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;tell application <span style="color: #000099; font-weight: bold;">\&quot;</span>iTerm<span style="color: #000099; font-weight: bold;">\&quot;</span></span></div></td></tr></tbody></table></div>
<p>with this:</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">arch</span> <span style="color: #660033;">-i386</span> osascript <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;tell application <span style="color: #000099; font-weight: bold;">\&quot;</span>iTerm<span style="color: #000099; font-weight: bold;">\&quot;</span></span></div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: jujudellago</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-282001</link>
		<dc:creator>jujudellago</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-282001</guid>
		<description>Hi,

Thanks a lot for this, that solved problems I had for ages connecting to too many servers....

just a little problem, the background image disapear when I enter full screen (CMD-Enter) 

cheers

julien</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks a lot for this, that solved problems I had for ages connecting to too many servers&#8230;.</p>
<p>just a little problem, the background image disapear when I enter full screen (CMD-Enter) </p>
<p>cheers</p>
<p>julien</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j2</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-281091</link>
		<dc:creator>j2</dc:creator>
		<pubDate>Fri, 12 Mar 2010 21:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-281091</guid>
		<description>This will work better with arguments passed to ssh:

[cc_bash]
HOSTNAME=`echo $@ &#124; sed &#039;s/.* \(.*\)$/\1/&#039; &#124; sed &quot;s/.*@//&quot;`
[/cc_bash]

e.g. on OSX [cci_bash]-Y[/cci_bash] forwards X11 connections easily, but using your sed expressions the command [cci_bash]ssh -Y myhost[/cci_bash] will result in [cci_bash]-Y[/cci_bash] being the image shown in the background.

Also, you still need to be careful that you are on the host that you logged onto originally from OSX.  if you chain your ssh&#039;s your background image will be incorrect.</description>
		<content:encoded><![CDATA[<p>This will work better with arguments passed to ssh:</p>
<div class="codecolorer-container bash twitlight" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #007800;">HOSTNAME</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> $<span style="color: #000000; font-weight: bold;">@</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s/.* \(.*\)$/\1/'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">&quot;s/.*@//&quot;</span><span style="color: #000000; font-weight: bold;">`</span></div></td></tr></tbody></table></div>
<p>e.g. on OSX <code class="codecolorer bash default"><span class="bash"><span style="color: #660033;">-Y</span></span></code> forwards X11 connections easily, but using your sed expressions the command <code class="codecolorer bash default"><span class="bash"><span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-Y</span> myhost</span></code> will result in <code class="codecolorer bash default"><span class="bash"><span style="color: #660033;">-Y</span></span></code> being the image shown in the background.</p>
<p>Also, you still need to be careful that you are on the host that you logged onto originally from OSX.  if you chain your ssh&#8217;s your background image will be incorrect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dgs</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-281025</link>
		<dc:creator>dgs</dc:creator>
		<pubDate>Fri, 12 Mar 2010 05:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-281025</guid>
		<description>Very cool, that would be so useful in large data centers!!!</description>
		<content:encoded><![CDATA[<p>Very cool, that would be so useful in large data centers!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: e0ne</title>
		<link>http://kpumuk.info/mac-os-x/how-to-show-ssh-host-name-on-the-iterms-background/#comment-281017</link>
		<dc:creator>e0ne</dc:creator>
		<pubDate>Fri, 12 Mar 2010 11:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/?p=612#comment-281017</guid>
		<description>It&#039;s interesting feature. But I think it&#039;s not very useful.</description>
		<content:encoded><![CDATA[<p>It&#8217;s interesting feature. But I think it&#8217;s not very useful.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
