<?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>Poli Bou &#187; links</title>
	<atom:link href="http://www.polibou.com/tag/links/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.polibou.com</link>
	<description>People. Places. Things.</description>
	<lastBuildDate>Tue, 22 Jun 2010 18:40:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using Symbolic Links</title>
		<link>http://www.polibou.com/2009/06/11/using-symbolic-links/</link>
		<comments>http://www.polibou.com/2009/06/11/using-symbolic-links/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 18:26:20 +0000</pubDate>
		<dc:creator>Poli</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[paths]]></category>
		<category><![CDATA[symbolic link]]></category>

		<guid isPermaLink="false">http://www.polibou.com/?p=288</guid>
		<description><![CDATA[I can never seem to remember all these Linux commands. I just had to look up how to create a symbolic link. Here it is for reference: ln -s /path/of/original/file /path/of/linked/file This will point a file or directory to another file or directory. Why would you want to do this? Well, on our web server [...]]]></description>
			<content:encoded><![CDATA[<p>I can never seem to remember all these Linux commands.  I just had to look up how to create a symbolic link.  Here it is for reference:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ln -s /path/of/original/file /path/of/linked/file</div></div>
<p>This will point a file or directory to another file or directory.  Why would you want to do this?  Well, on our web server we have multiple websites and they share a directory of common include files.  So instead of using the server path to get the files, we can just link the local include directory to the global include directory and access the files relatively.  It just makes things cleaner.</p>
<p>Here&#8217;s how to unlink a symbolic link.  Remember not to use a trailing slash.  rm will also work.</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">unlink /path/of/symbolic/link<br />
rm /path/of/symbolic/link</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.polibou.com/2009/06/11/using-symbolic-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
