Executing own Unix command in terminal? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T12:22:30Z http://stackoverflow.com/feeds/question/619537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/619537/executing-own-unix-command-in-terminal -1 Executing own Unix command in terminal? Masi 2009-03-06T16:44:09Z 2009-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#619545 2 Answer by Paul Tomblin for Executing own Unix command in terminal? Paul Tomblin 2009-03-06T16:47:01Z 2009-03-06T16:47:01Z <p>Add it to PATH, not CDPATH.</p> http://stackoverflow.com/questions/619537/executing-own-unix-command-in-terminal/619547#619547 5 Answer by Node for Executing own Unix command in terminal? Node 2009-03-06T16:47:21Z 2009-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>~&gt; . ~/.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#619548 1 Answer by siddhadev for Executing own Unix command in terminal? siddhadev 2009-03-06T16:47:28Z 2009-03-06T16:47:28Z <p>Try adding it in PATH like this:</p> <pre><code>PATH=/Users/Sam/Documents/Unix:$PATH </code></pre>