How do you run Eclipse IDE for C/C++ from the command line (I already installed it)

189 views Asked by At

I used

sudo apt-get install eclipse eclipse-cdt g++

to install eclipse for c/c++, but I don't know what command runs it.

2

There are 2 answers

1
AudioBubble On

just write eclipse in terminal.

0
alexoneill On

Try the following in your terminal:

$ eclipse

You may also be interested in various command-line flags or parameters you can pass to Eclipse. The documentation does a good job at explaining these.

For example, with the -nosplash flag, Eclipse will start without showing a splash screen

$ eclipse -nosplash

These flags may also be helpful when writing scripts or using a custom Java VM when launching Eclipse.