vote up -1 vote down star
1

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
flag

Why are you doing this? There's no need for a conversion in OSX - its text files use UNIX CRLFs. – ceejayoz Mar 6 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 at 17:48

3 Answers

vote up 5 vote down check

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|flag
No change. You can find my .bashrc here: dpaste.com/8008 – Masi Mar 6 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 at 17:23
It seems to work. I get the following error: -bash: /Users/Sam/Documents/Unix/macmac2unix: Permission denied – Masi Mar 6 at 18:00
I get the program work by running:$ chmod +x macmac2unix . Thank you! – Masi Mar 6 at 18:03
vote up 2 vote down

Add it to PATH, not CDPATH.

link|flag
vote up 1 vote down

Try adding it in PATH like this:

PATH=/Users/Sam/Documents/Unix:$PATH
link|flag

Your Answer

Get an OpenID
or

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