Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a version of SVN on my system in /usr/bin/svn. This is too old to use with some repositories so I compiled a newer version in /home/user/built/bin/svn which works fine. I added this to my PATH so it should be run first.

Typing

which svn

produces

/home/user/built/bin/svn

however typing

svn --version

reveals that it us using the old version still. if I run

/home/user/built/bin/svn --version

then the correct version is displayed.

Since the custom version is first in my $PATH, and which lists it first why is the older version being invoked when I run svn? I thought which used your $PATH to find executables in the same fashion as the shell?

[Edit] Type gives:

type svn
svn is hashed (/usr/bin/svn)

Using

hash -r

Has now fixed the problem! Thanks for the help. :)

share|improve this question
whereis svn? – ajreal Jan 5 '11 at 16:36
whereis svn svn: /usr/bin/svn /usr/bin/X11/svn /usr/share/man/man1/svn.1.gz Whereis doesn't list the custom version on the PATH. – Nick Jan 5 '11 at 16:39

2 Answers

up vote 2 down vote accepted

Use

type svn

to figure out (a) what it is, (b) where it is or what its definition is. Also check that PATH really contains what you think it does

echo $PATH
share|improve this answer
Thanks, that fixed it. I hadn't come across hash before. One of those things you can normally take for granted and then bites you if you don't know what is going on under the hood! :) – Nick Jan 5 '11 at 17:15
Oh yeah hash. The next evil thing after ldconfig and even more hideous. – user562374 Jan 5 '11 at 17:24

You sure you don't have a symbolic link to svn somewhere else in your path?

share|improve this answer
I don't think so, typing: which svn -a only gives the two paths. Would a symbolic link show up there? /home/user/built/bin/svn /usr/bin/svn – Nick Jan 5 '11 at 16:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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