I'm setting up svnX on my 10.6.8 MBP. Setup wants to know where the SVN binaries are. It would also be good to know how I should have looked for them from Terminal. I'm sure there's a command, I just don't know it. Thank you.
If you want to find the path to a program, you can use either the which program or the find program.
First start with:
Code:
which svn
This will find an svn program on path, that is the one that would be executed if you just type svn into Terminal.
However, you might have multiple svn programs, presumably of different versions. The which program will only print out the path of the first one, not necessarily the latest one, and it won't print out the paths of svn programs not on path.
The find command below will search your hard disk and print out the path and version of all the svn programs it finds.
I hope you mean your colleagues metaphorically install newer versions over the standard one and not literally. For example, by installing the new version into a directory before the standard directories on path. Overwriting system-supplied files is a UNIX 101 no-no.