You can use the `*` symbol as a wildcard. I know it works when deleting files that may all be titled the same but have different dates attached to the file name.
In your case, you would type:
sudo apt-get install eclipse*
This will install all packages that start with the string `eclipse`
versus:
sudo apt-get install eclipse
This will only install packages name "eclipse"