Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch multiple instances of application in Mac

Tags:

macos

I tried with LSMultipleInstancesProhibited = FALSE, in Info.plist, but it is opening one instance,

I need to launch multiple instances of application from one installation directory on Mac

like image 234
living on edge Avatar asked Nov 17 '17 12:11

living on edge


2 Answers

Open Terminal and type:

open -n -a "APPLICATION NAME"

like image 58
P.O.W. Avatar answered Oct 22 '22 16:10

P.O.W.


terminal:

open -n -a APPLICATION-NAME

-n, --new Open a new instance of the application even if one is already running.

-a, -- Opens with the specified application.

How to Launch GUI Applications from the Terminal

http://osxdaily.com/2007/02/01/how-to-launch-gui-applications-from-the-terminal/

like image 22
hoogw Avatar answered Oct 22 '22 17:10

hoogw