<div dir="ltr"><div>I got the exact same thing...</div><div><br></div><div>Apples-MacBook-Pro:~ apple$ echo -n &quot;$IFS&quot; | hexdump</div><div>0000000 20 09 0a                                       </div><div>0000003</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Aug 31, 2014 at 12:52 AM, Ryan Schmidt <span dir="ltr">&lt;<a href="mailto:ryandesign@macports.org" target="_blank">ryandesign@macports.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class=""><br>
On Aug 30, 2014, at 1:17 PM, vignesh babu wrote:<br>
&gt;<br>
&gt; Would it help if I remove the /opt directory &amp; redo the whole thing?<br>
<br>
</div>It doesn&#39;t sound like it.<br>
<br>
Larry&#39;s and Brandon&#39;s analysis sounds brilliant to me. What is the value of IFS on the problem system? Since IFS normally contains whitespace characters, maybe a good way to see what&#39;s in it is to feed it to hexdump, by running:<br>

<br>
<br>
echo -n &quot;$IFS&quot; | hexdump<br>
<br>
<br>
Here&#39;s what I get on my system:<br>
<br>
<br>
$ echo -n &quot;$IFS&quot; | hexdump<br>
0000000 20 09 0a<br>
0000003<br>
<br>
<br>
...showing that on my system IFS contains the three characters space (character 20), tab (character 09) and newline (character 0a). What do you get?<br>
<br>
</blockquote></div><br></div>