Launch multiple instances of application in Mac

前端 未结 2 647
迷失自我
迷失自我 2020-12-29 11:37

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

I need to launch multiple instances of application from one instal

相关标签:
2条回答
  • 2020-12-29 12:20

    Open Terminal and type:

    open -n -a "APPLICATION NAME"

    0 讨论(0)
  • 2020-12-29 12:27

    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/

    0 讨论(0)
提交回复
热议问题