Category Archives: OS X

How to open multiple instances of an application in OS X

you’ll need to do so via the Terminal command line using the following:


open -n -a "APPLICATION NAME"

This command tells the system to open a new instance (the “-n” flag) of an application (the “-a” flag) that is the given name in quotes.