<?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/"
	>

<channel>
	<title>ibananti&#039;s blog &#187; shell</title>
	<atom:link href="http://blog.boyandi.net/category/shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.boyandi.net</link>
	<description>notes about ui, web development, visualization. links, tips and tricks</description>
	<lastBuildDate>Tue, 29 Jun 2010 15:11:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Switching subversion repository</title>
		<link>http://blog.boyandi.net/2009/06/19/manually-switching-to-another-subversion-repository/</link>
		<comments>http://blog.boyandi.net/2009/06/19/manually-switching-to-another-subversion-repository/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 14:45:52 +0000</pubDate>
		<dc:creator>Ilya Boyandin</dc:creator>
				<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://blog.boyandi.net/?p=29</guid>
		<description><![CDATA[If you use Subclipse, switching to another repository in a local working copy can be pain in the ass, because Subclipse (and I think svn itself) only allows to change the path of the repository if it&#8217;s still in the same repository. I had to change the path from http://.. to https://.. and couldn&#8217;t do [...]]]></description>
			<content:encoded><![CDATA[<p>If you use Subclipse, switching to another repository in a local working copy can be pain in the ass, because Subclipse (and I think svn itself) only allows to change the path of the repository if it&#8217;s still in the same repository. I had to change the path from http://.. to https://.. and couldn&#8217;t do it in Eclipse. Subclipse reported an error: &#8220;<em>https://.. is not the same repository as http://.. </em>&#8220;. As a last resort I decided to manually update the repository in all of the svn&#8217;s <strong>entries</strong> files using the magic <strong>xargs</strong> command. Running this command in the project root directory did the trick (works with Cygwin on Windows as well):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> entries <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;s/http:\/\//https:\/\//g&quot;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.boyandi.net/2009/06/19/manually-switching-to-another-subversion-repository/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Directory links on Windows</title>
		<link>http://blog.boyandi.net/2008/04/21/directory-links-on-windows/</link>
		<comments>http://blog.boyandi.net/2008/04/21/directory-links-on-windows/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 13:05:26 +0000</pubDate>
		<dc:creator>Ilya Boyandin</dc:creator>
				<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://blog.boyandi.net/?p=12</guid>
		<description><![CDATA[I didn&#8217;t know that it&#8217;s so simple to make directory aliases on Windows 2000+. There is an undocumented utility for it: linkd.exe (part of  Windows Server Resource Kit), which is roughly equivalent to ln -d in UNIX. So you can write:

LINKD Docs C:\Documents and Settings\Ilya\My Documents

And voila! You have now C:\Docs which links to My [...]]]></description>
			<content:encoded><![CDATA[<p>I didn&#8217;t know that it&#8217;s so simple to make directory aliases on Windows 2000+. There is an undocumented utility for it: linkd.exe (part of  <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;displaylang=en">Windows Server Resource Kit</a>), which is roughly equivalent to ln -d in UNIX. So you can write:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">LINKD Docs C:\Documents and Settings\Ilya\My Documents</pre></div></div>

<p>And voila! You have now C:\Docs which links to My Documents.</p>
<p><a href="http://www.pyeung.com/pages/win2k/hardlinks.html">More here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.boyandi.net/2008/04/21/directory-links-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
