Reputation: 12481
I see FileMerge in the Xcode app bundle:
/Applications/Xcode.app/Contents/Applications/FileMerge.app
I know I can open it on the command line using:
open /Applications/Xcode.app/Contents/Applications/FileMerge.app
But there seems like there should be an easier way. How can I tell Spotlight about FileMerge so I can open it with the keyboard? Is there another way to launch it without having to use the command-line?
Upvotes: 30
Views: 25637
Reputation: 580
On MacOS Catalina, you just need to open spotlight (cmd+space) and type "FileMerge".
Upvotes: 7
Reputation: 118500
I had to do xcode-select -s /Applications/Xcode.app/Contents/Developer
in order to have opendiff
be accessible (required for SourceTree).
Upvotes: 6
Reputation: 336
Symbolic links also work.
% cd /Applications
% ln -s Xcode.app/Contents/Applications/FileMerge.app/ .
Upvotes: 17
Reputation: 51638
Put an alias into the Applications folder. Spotlight and Launchpad will find it.
Upvotes: 8