<?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: Getting Started With Cygwin</title>
	<atom:link href="http://lostechies.com/derekgreer/2010/04/08/getting-started-with-cygwin/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/derekgreer/2010/04/08/getting-started-with-cygwin/</link>
	<description>pursuing well-crafted software</description>
	<lastBuildDate>Tue, 14 May 2013 13:08:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: derekgreer</title>
		<link>http://lostechies.com/derekgreer/2010/04/08/getting-started-with-cygwin/#comment-6</link>
		<dc:creator>derekgreer</dc:creator>
		<pubDate>Sun, 11 Apr 2010 00:22:53 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derekgreer/archive/2010/04/08/getting-started-with-cygwin.aspx#comment-6</guid>
		<description>How embarrassing ... it figures the one place I would misspell Cygwin was in the title.</description>
		<content:encoded><![CDATA[<p>How embarrassing &#8230; it figures the one place I would misspell Cygwin was in the title.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: @ThorsonB</title>
		<link>http://lostechies.com/derekgreer/2010/04/08/getting-started-with-cygwin/#comment-5</link>
		<dc:creator>@ThorsonB</dc:creator>
		<pubDate>Sat, 10 Apr 2010 23:41:54 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derekgreer/archive/2010/04/08/getting-started-with-cygwin.aspx#comment-5</guid>
		<description>Huh? I dont understand what is this &quot;CGYWIN&quot; thing and what does it do?</description>
		<content:encoded><![CDATA[<p>Huh? I dont understand what is this &#8220;CGYWIN&#8221; thing and what does it do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derekgreer</title>
		<link>http://lostechies.com/derekgreer/2010/04/08/getting-started-with-cygwin/#comment-4</link>
		<dc:creator>derekgreer</dc:creator>
		<pubDate>Sat, 10 Apr 2010 21:14:54 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derekgreer/archive/2010/04/08/getting-started-with-cygwin.aspx#comment-4</guid>
		<description>@Kris Yep, just grab the ncurses package.</description>
		<content:encoded><![CDATA[<p>@Kris Yep, just grab the ncurses package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris </title>
		<link>http://lostechies.com/derekgreer/2010/04/08/getting-started-with-cygwin/#comment-3</link>
		<dc:creator>Kris </dc:creator>
		<pubDate>Sat, 10 Apr 2010 20:37:29 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derekgreer/archive/2010/04/08/getting-started-with-cygwin.aspx#comment-3</guid>
		<description>Thanks for sharing this. Even though I am a cygwin user, I found some information in this post very useful. Is there a way you can clear the terminal (like cls in dos). I have gotten around it by using cmd /c .... but am wondering if there is a special package I should download to get the unix &quot;clear&quot; command.

</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this. Even though I am a cygwin user, I found some information in this post very useful. Is there a way you can clear the terminal (like cls in dos). I have gotten around it by using cmd /c &#8230;. but am wondering if there is a special package I should download to get the unix &#8220;clear&#8221; command.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mendicant</title>
		<link>http://lostechies.com/derekgreer/2010/04/08/getting-started-with-cygwin/#comment-2</link>
		<dc:creator>mendicant</dc:creator>
		<pubDate>Thu, 08 Apr 2010 22:26:16 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derekgreer/archive/2010/04/08/getting-started-with-cygwin.aspx#comment-2</guid>
		<description>Other great apps you might want:

Install Screen: Great for using multiple consoles within a single window. Also, keeps your session alive if you decide you want to use:

SSH: Install this as a service, and be able to remotely log in to your command line. Plus side, ssh has port tunneling, so by having a single ssh box inside your home network, you can access any app (forward any port on the computer you&#039;re using to port 3389 on any ip within your home network... instant remote desktop without opening a port on your firewall)

tail: use tail -F &lt;logfile&gt; to watch your log scroll before your eyes

rm -rf `find ./ -iname &quot;.svn&quot; -type d`: remove all .svn folders

Add the following lines to .inputrc:
&quot;\e[A&quot;:history-search-backward
&quot;\e[B&quot;:history-search-forward

Followed by &quot;source ~/.inputrc&quot;
Now when you&#039;re typing a command in your bash shell up/down arrow keys will search back/forward in your history for matching commands

Might be able to come up with some links for those first two ones.



</description>
		<content:encoded><![CDATA[<p>Other great apps you might want:</p>
<p>Install Screen: Great for using multiple consoles within a single window. Also, keeps your session alive if you decide you want to use:</p>
<p>SSH: Install this as a service, and be able to remotely log in to your command line. Plus side, ssh has port tunneling, so by having a single ssh box inside your home network, you can access any app (forward any port on the computer you&#8217;re using to port 3389 on any ip within your home network&#8230; instant remote desktop without opening a port on your firewall)</p>
<p>tail: use tail -F <logfile> to watch your log scroll before your eyes</p>
<p>rm -rf `find ./ -iname &#8220;.svn&#8221; -type d`: remove all .svn folders</p>
<p>Add the following lines to .inputrc:<br />
&#8220;\e[A&#8221;:history-search-backward<br />
&#8220;\e[B&#8221;:history-search-forward</p>
<p>Followed by &#8220;source ~/.inputrc&#8221;<br />
Now when you&#8217;re typing a command in your bash shell up/down arrow keys will search back/forward in your history for matching commands</p>
<p>Might be able to come up with some links for those first two ones.</p>
<p></logfile></p>
]]></content:encoded>
	</item>
</channel>
</rss>
