Executing own Unix command in terminal? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T12:22:30Zhttp://stackoverflow.com/feeds/question/619537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/619537/executing-own-unix-command-in-terminal-1Executing own Unix command in terminal?Masi2009-03-06T16:44:09Z2009-03-06T17:11:17Z
<p>I made an Unix command, macmac2unix, which converts Mac's Word file for Unix platforms.</p>
<p>I would like to run the command as</p>
<pre><code>$macmac2unix file1 file2 file3 ...
</code></pre>
<p><strong>Problem:</strong>
How can I run this command in every path?</p>
<p>I added the following to .bashrc unsuccessfully</p>
<pre><code>CDPATH=:/Users/Sam/Documents/Unix
</code></pre>
http://stackoverflow.com/questions/619537/executing-own-unix-command-in-terminal/619545#6195452Answer by Paul Tomblin for Executing own Unix command in terminal?Paul Tomblin2009-03-06T16:47:01Z2009-03-06T16:47:01Z<p>Add it to PATH, not CDPATH.</p>
http://stackoverflow.com/questions/619537/executing-own-unix-command-in-terminal/619547#6195475Answer by Node for Executing own Unix command in terminal?Node2009-03-06T16:47:21Z2009-03-06T17:11:17Z<p>Try adding </p>
<pre><code>export PATH=$PATH:/Users/Sam/Documents/Unix
</code></pre>
<p>to your .bashrc</p>
<p>Make your script executeable be sure it's located in /Users/Sam/Documents/Unix.
You could reread your .bashrc with:</p>
<pre><code>~> . ~/.bashrc
</code></pre>
<p>But if you already played around with your enviroment variables a restart of your terminal
would be cleaner.</p>
http://stackoverflow.com/questions/619537/executing-own-unix-command-in-terminal/619548#6195481Answer by siddhadev for Executing own Unix command in terminal?siddhadev2009-03-06T16:47:28Z2009-03-06T16:47:28Z<p>Try adding it in PATH like this:</p>
<pre><code>PATH=/Users/Sam/Documents/Unix:$PATH
</code></pre>