Reputation: 6485
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
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