I don't have ANT_HOME set, so i want to find where the home directory of ant is. I'm using the version of ant that was installed by default on my OSX install.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 23 down vote accepted

Follow these instructions to find the location of any package:

whereis ant (replace 'ant' with whatever you're looking for)

On my machine, this reports:

/usr/bin/ant

so, I do:

ls -l /usr/bin/ant

on my machine this reports:

lrwxr-xr-x  1 root  wheel  22 Nov 30 17:09 /usr/bin/ant -> /usr/share/ant/bin/ant

so, I do :

ls -l /usr/share/ant 

and get:

lrwxr-xr-x  1 root  wheel  14 Nov 30 17:09 /usr/share/ant -> java/ant-1.8.1

from this I can surmise that ant is installed at /usr/share/ant/java/ant-1.8.1

link|improve this answer
thanks, very useful command – czer Jan 28 '11 at 1:43
You can also do "which ant" instead of using "whereis..." – Chilloutman Feb 10 at 10:35
feedback

try looking in /usr/bin folder .. it should tell you where it is installed.

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.