up vote 0 down vote favorite
1
share [g+] share [fb]

I made an Unix command, macmac2unix, which converts Mac's Word file for Unix platforms.

I would like to run the command as

$macmac2unix file1 file2 file3 ...

Problem: How can I run this command in every path?

I added the following to .bashrc unsuccessfully

CDPATH=:/Users/Sam/Documents/Unix
link|improve this question

1  
Why are you doing this? There's no need for a conversion in OSX - its text files use UNIX CRLFs. – ceejayoz Mar 6 '09 at 16:49
You are confusing CDPATH with PATH. And I also ask, why are you doing this, or could you clarify what exactly you are trying to do? – Craig S Mar 6 '09 at 17:48
feedback

3 Answers

up vote 5 down vote accepted

Try adding

export PATH=$PATH:/Users/Sam/Documents/Unix

to your .bashrc

Make your script executeable be sure it's located in /Users/Sam/Documents/Unix. You could reread your .bashrc with:

~> . ~/.bashrc

But if you already played around with your enviroment variables a restart of your terminal would be cleaner.

link|improve this answer
No change. You can find my .bashrc here: dpaste.com/8008 – Masi Mar 6 '09 at 17:04
Hm, remove the line 5 and restart your terminal. Or try executing 'export PATH=$PATH:/Users/Sam/Documents/Unix' directly in your terminal for testing purposes. – Node Mar 6 '09 at 17:23
It seems to work. I get the following error: -bash: /Users/Sam/Documents/Unix/macmac2unix: Permission denied – Masi Mar 6 '09 at 18:00
I get the program work by running:$ chmod +x macmac2unix . Thank you! – Masi Mar 6 '09 at 18:03
feedback

Add it to PATH, not CDPATH.

link|improve this answer
feedback

Try adding it in PATH like this:

PATH=/Users/Sam/Documents/Unix:$PATH
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.