Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know of any Eclipse plugin to run a system shell in the included console? It would be awesome. Dolphin, KDE's file navigator, has this feature, you can press F4 and a console shows located on the directory you are standing.

It would be awesome to have a similar feature on Eclipse, with the shell located on the directory of the project/file you are working on.

Does this plugin exist?

If not, would it be too complicated to code such a plugin? I have no idea about eclipse plugin development (yet).

share|improve this question

11 Answers

up vote 30 down vote accepted

It exists, and it's built into Eclipse! Go to the Remote Systems view, and you'll see an entry for "Local". Right-click "Local Shells" and choose "Launch Shell."

You can't launch it directly from the project navigator. But you can right-click in the navigator and choose "Show in Remote Systems view". From there you can right-click the parent folder and choose "Launch Shell."

Aptana also has a Terminal view, and a command to open the selected file in the terminal.

share|improve this answer
7  
In case you haven't installed something that depends on it already, you will first have to do Install New Software -> General Purpose Tools -> Remote System Explorer End-User Runtime. – Glyph Apr 29 '10 at 23:06
2  
Very rough solution, but it works. – Erik B Jul 1 '11 at 1:44
3  
Very rough indeed. I tried running sbt in such a view, and it crashed. – nfelger Jul 13 '11 at 19:16
Added note about Aptana. – JW. Oct 4 '12 at 20:55
I tried this solution but didn't work for me. If I right-click on 'Local Shells' and then select 'launch shell' this displays a so-called Remote Shell in Local. This shell actually does not response to commands (something I still don't understand). If instead of selecting 'launch shell' the option 'Commands>Shell Script>Open Terminal' is selected then a local terminal which actually works is displayed. – rauldg Mar 1 at 9:09

Terminal plug-in for Eclipse provides a command line view (= INSIDE Eclipse), at the moment Linux and Mac OS X only, Windows is missing. For Windows, use JW's aproach.

Update:
They are working on it, see this issue and a basic implementation.

share|improve this answer

Aptana Studio 3 includes such terminal. I found it to be very similar to native terminal compared to what's mentioned in other answers.

share|improve this answer
Aptana is mainly focused on web development – tsubasa Aug 2 '11 at 14:44

I wrote this to get a native shell...it uses the same GTK widget the gnome-terminal uses so the behavior should be nearly identical.

http://github.com/maihde/Eclipse-Terminal

share|improve this answer

I just found out about WickedShell, but it seems to work wrong with GNU/Linux and bash. Seems like some sort of encoding issue, all the characters in my prompt are displayed wrong.

Seems to be the best (only) tool for the job anyways, so I'll give it some more testing and see if it's good enough. I'll contact the developer anyways about this issue.

share|improve this answer
A warning: I installed wicked shell and started getting "Unexpected error" dialogs. So, If you get these also, just uninstall it. – xaav Aug 15 '11 at 3:23

... just a little bit late :) you might give a try at http://code.google.com/p/tarlog-plugins/. It gives you options like open shell and open explorer from Project Explorer context menu.

There's also http://sourceforge.net/projects/explorerplugin/ but it seems kind of stuck at 2009.

share|improve this answer

You can also use the Termial view to ssh/telnet to your local machine. Doesn't have that funny input box for commands.

share|improve this answer

In Eclipse 3.7, I found a terminal view plugin that I installed through Eclipse Marketplace. Details are as follow:

Local Terminal (Incubation) http://market.eclipsesource.com/yoxos/node/org.eclipse.tm.terminal.local.feature.group

A terminal emulation for local shells and external tools. Requires CDT Core 7.0 or later. Works on Linux, Solaris and Mac. Includes Source.

Side note, this terminal does not execute .bash_profile or .bashrc so you can do

source ~/.bash_profile

and (if this isn't sourced by `.bash_profile)

source ~/.bashrc
share|improve this answer

I recommend EasyShell, which features 'open' (console), 'run', 'explore', and 'copy path'.

share|improve this answer

I really like StartExplorer but it is a contextual launcher rather than in - IDE shell so not sure if that is what you want

share|improve this answer

Add C:\Windows\System32\cmd.exe as an external tool. Once run, you can then access it via the normal eclipse console.

http://www.avajava.com/tutorials/lessons/how-do-i-open-a-windows-command-prompt-in-my-console.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.