Reputation: 64807
I have code
eclipse -clean
in batch file
clean.bat
and the console stays open until i close eclipse.
P.S. I know I can create shortcut/link to don't have that problem, but I'm not interested in that. I want to execute some extra code from batch.
Upvotes: 0
Views: 351
Reputation: 354704
Use
start eclipse -clean
or, if you're using some path to Eclipse (and must quote the invocation):
start "" "eclipse" -clean
Upvotes: 1