Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I open FileMerge.app on Mac OS 10.13+ and Xcode 9+?

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?

like image 738
Chris Williams Avatar asked Nov 29 '17 23:11

Chris Williams


People also ask

How do I open FileMerge on Mac?

On MacOS Catalina, you just need to open spotlight (cmd+space) and type "FileMerge".

Where is xcode installed on Mac?

In Finder, select the Go pull-down menu, and select Applications. Or just use the short-cut key Command-Shift-A while Finder is active. This should open a new Finder window, showing all the Applications installed on your machine. Look for the XCode icon in the Applications folder.

What is xcode in Mac?

Xcode is a complete developer toolset for creating apps for Mac, iPhone, iPad, Apple Watch, and Apple TV. Xcode brings user interface design, coding, testing, debugging, and submitting to the App Store into a unified workflow.

How do I download xcode on Mac terminal?

To install Xcode Command Line Tools, navigate to your device's Terminal app again through Spotlight Search. Then, type “xcode-select –install” into your terminal and hit Enter. Instead of clicking “Get Xcode” like before, find and click Install at the bottom-right-hand corner of the new window.


1 Answers

Symbolic links also work.

% cd /Applications

% ln -s Xcode.app/Contents/Applications/FileMerge.app/ .

like image 139
muchavie Avatar answered Sep 23 '22 19:09

muchavie