Reputation: 53
I installed ant using home brew.
Now the ant -version
gives me the installed version, but how do i find out where ant is installed on my mac?
Kindly help?
Upvotes: 1
Views: 2151
Reputation: 7924
brew is going to put a symlink in /usr/local/bin/
that points to the installation in /usr/local/Cellar/ant/
To find the complete path:
ls -l $(which ant)
Upvotes: 1