Reputation: 190809
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.
Upvotes: 4
Views: 4488
Reputation: 1
You can run multiple instances of Eclipse by creating a pseudonym for Eclipse application in it's folder and using it for running new Eclipse instance
Upvotes: 0
Reputation: 8726
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.
Upvotes: 7