Is there a way to start an instance of eclipse, passing it some sort of parameter telling it to use a specific workspace?
The problem I\'m trying to solve is that I
From https://help.eclipse.org/topic/org.eclipse.platform.doc.isv/reference/misc/runtime-options.html
It is also possible to specify the workspace location using the osgi.instance.area JVM arg as -Dosgi.instance.area=../workspace
This can be specified in the eclipse.ini file along with existing/other JVM args such as -Xms, -Xmx.
This option may be convenient for those who just want to append to the eclipse.ini file (which already contains other JVM args) without worrying to ensure that JVM args appear at the end.