<?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/"
	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>Comments on: Adding to $PATH in MacOSX 10.5 (Leopard)</title>
	<atom:link href="http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/feed/" rel="self" type="application/rss+xml" />
	<link>http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/</link>
	<description>Bits, bytes and signal noise from Shaon Diwakar</description>
	<lastBuildDate>Tue, 11 May 2010 22:30:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: dobbs</title>
		<link>http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/#comment-65</link>
		<dc:creator>dobbs</dc:creator>
		<pubDate>Tue, 01 Sep 2009 06:50:46 +0000</pubDate>
		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=93#comment-65</guid>
		<description>Use single quotes to prevent variable expansion:

echo &#039;$HOME/bin&#039; &gt; HomeBin</description>
		<content:encoded><![CDATA[<p>Use single quotes to prevent variable expansion:</p>
<p>echo &#8216;$HOME/bin&#8217; &gt; HomeBin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaon Diwakar</title>
		<link>http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/#comment-51</link>
		<dc:creator>Shaon Diwakar</dc:creator>
		<pubDate>Tue, 06 Jan 2009 22:54:41 +0000</pubDate>
		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=93#comment-51</guid>
		<description>My pleasure Emily! I didn&#039;t realise that BASH evaluates variables inside double quotes! You learn something new everyday :-) Thanks for the tip Emily :-)</description>
		<content:encoded><![CDATA[<p>My pleasure Emily! I didn&#8217;t realise that BASH evaluates variables inside double quotes! You learn something new everyday <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Thanks for the tip Emily <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emily</title>
		<link>http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/#comment-50</link>
		<dc:creator>Emily</dc:creator>
		<pubDate>Tue, 06 Jan 2009 11:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=93#comment-50</guid>
		<description>Just a little addition: I wanted to add $HOME/bin to the path and being happy to have found out about path_helper thanks to this post, without putting my brain into gear, I typed

  echo &quot;$HOME/bin&quot; &gt; HomeBin

in place of step six above. Of course, what I didn&#039;t think of was that BASH evaluates variables inside double quotes so what was being put into HomeBin was /var/root/bin (the home of the super user is /var/root).

To get by this, either edit the file with a text editor such as vi and enter the variable or use single quotes in place of double quotes around the path you want added to $PATH.

Thanks for the post Shaon!</description>
		<content:encoded><![CDATA[<p>Just a little addition: I wanted to add $HOME/bin to the path and being happy to have found out about path_helper thanks to this post, without putting my brain into gear, I typed</p>
<p>  echo &#8220;$HOME/bin&#8221; &gt; HomeBin</p>
<p>in place of step six above. Of course, what I didn&#8217;t think of was that BASH evaluates variables inside double quotes so what was being put into HomeBin was /var/root/bin (the home of the super user is /var/root).</p>
<p>To get by this, either edit the file with a text editor such as vi and enter the variable or use single quotes in place of double quotes around the path you want added to $PATH.</p>
<p>Thanks for the post Shaon!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaon Diwakar</title>
		<link>http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/#comment-20</link>
		<dc:creator>Shaon Diwakar</dc:creator>
		<pubDate>Wed, 15 Oct 2008 07:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=93#comment-20</guid>
		<description>Thanks for the comments Connor! It would be nice if there were an easier method to edit the path _without_ having root/superuser privileges (aside from constantly editing via echo $PATH = $PATH;/path...</description>
		<content:encoded><![CDATA[<p>Thanks for the comments Connor! It would be nice if there were an easier method to edit the path _without_ having root/superuser privileges (aside from constantly editing via echo $PATH = $PATH;/path&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: connor doyle</title>
		<link>http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/#comment-19</link>
		<dc:creator>connor doyle</dc:creator>
		<pubDate>Tue, 14 Oct 2008 21:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=93#comment-19</guid>
		<description>heh.. nevermind, that exactly what the post says to do!</description>
		<content:encoded><![CDATA[<p>heh.. nevermind, that exactly what the post says to do!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: connor doyle</title>
		<link>http://overwhelminglygeek.wordpress.com/2008/09/06/adding-to-path-in-macosx-105-leopard/#comment-18</link>
		<dc:creator>connor doyle</dc:creator>
		<pubDate>Tue, 14 Oct 2008 21:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://overwhelminglygeek.wordpress.com/?p=93#comment-18</guid>
		<description>There is an easy way to get it done.  Simply add a file to the directory /etc/paths.d

i.e.
sudo touch /etc/paths.d/

then edit that file.  the only thing you need to put in it is the path you need.  these paths are appended to your PATH environment.  if you&#039;re doing this in a terminal window you&#039;ll need to restart the terminal app (or just open a new tab) to see the results of your change.

cheers!</description>
		<content:encoded><![CDATA[<p>There is an easy way to get it done.  Simply add a file to the directory /etc/paths.d</p>
<p>i.e.<br />
sudo touch /etc/paths.d/</p>
<p>then edit that file.  the only thing you need to put in it is the path you need.  these paths are appended to your PATH environment.  if you&#8217;re doing this in a terminal window you&#8217;ll need to restart the terminal app (or just open a new tab) to see the results of your change.</p>
<p>cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
