Satish
Satish

Reputation: 6485

Is there a way to refresh eclipse workspace from console before launching eclipse?

Possibly asked multiple times; Is there a way to refresh eclipse workspace folder from console (linux or windows).

I know there are ant-tasks to do it. but curious to know if there's a command line trick.

Upvotes: 2

Views: 2390

Answers (1)

Paul Webster
Paul Webster

Reputation: 10654

No, the best you could do is run one of the ant tasks through eclipse.

eclipse/eclipse -noSplash \
-application org.eclipse.ant.core.antRunner \
-buildfile refreshWorkspace.xml \
-data /path/to/workspace

Upvotes: 3

Related Questions