Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I launch multiple eclipse IDE with different workspaces?

I need to run multiple eclipse with different workspaces. For Mac, I can launch eclipse using open -a Eclipse.app --args -data WORKSPACE. When I execute open -a Eclipse.app --args -data DIFFERENT_WORKSPACE, I just redirected to the existing eclipse.

like image 284
prosseek Avatar asked Oct 26 '25 11:10

prosseek


1 Answers

try:

open -n -a [PathToEclipse]/Eclipse.app --args -data DIFFERENT_WORKSPACE

-n will open a new instance of the application(s) even if one is already running.

like image 64
Faruk Sahin Avatar answered Oct 29 '25 02:10

Faruk Sahin