up vote 3 down vote favorite
1
share [g+] share [fb]

This is related somewhat to this question about a better shell terminal/gui-interface for cmd.exe

In my quest to find a better shell terminal, the only useful thing I came across was Console2, other alternatives weren't free and generally didn't offer much more than Console2 to make them worth their price.

I can't help but wonder, "how come"? The shell terminal is a very valuable tool to a programmer, yet no one came around to try and do a better job than cmd.exe (except for the guys @ console2)??

Surely designing a command line shell terminal emulator can't be such a hard task!

Has anyone tried writing a shell terminal emulator before? What's in it? Any resources out there (say, if I want to program my own shell)?

UPDATE

17/07/2009

I rephrased the question, what I was referring to as a "shell" is actually called a terminal emulator (at least in the linux world). I only realized this recently so I thought I should revisit this question and fix it.

link|improve this question

78% accept rate
Ah, I see. You want to continue using the cmd.exe 'shell' but change change the 'window' that wraps around it. While I think that's a good idea (cut'n'paste is a pain), I've never seen anything that can do this. – paxdiablo Feb 11 '09 at 4:38
actually, console2 (which I linked to) does it, but it doesn't quite satisfy me .. – hasen j Feb 11 '09 at 6:53
console2 is OSS... So you could try to improve it. To me it seems that way console2 is using hidden "cmd.exe"s is doomed to be buggy. – Kalmi Mar 27 '09 at 2:06
feedback

8 Answers

What about PowerShell from Microsoft? AFAIK it's free, and gives you C# power right in the shell, and tons of other features. But, it DOES require the NET Framework...

I won't endorse it yet, as I haven't really used it, but it's on my list to do...

link|improve this answer
Powershell is at least as expressive as the classic *nix shells, and rather more extensible imo. It's a powerful tool that I'm making a point of learning for my more script-oriented problems. :) – Greg D Feb 13 '09 at 20:38
He is looking for a wrapper around cmd.exe... If you open up the PowerShell console you still get cmd.exe running PowerShell with a nice blue background. – Kalmi Mar 27 '09 at 1:54
It seems everyone bitches about the cut and paste in cmd... I don't get it. I've been using it since early 95 in the Win95 betas and stuff. I've never stopped. But, I DO force all my shells into 'Quick Edit' by default, and a 'mode 80,50', with 3000 lines of scroll back... – LarryF Mar 27 '09 at 18:07
'Quick Edit' mode is really great. It gives you Putty-like copy-paste. | Left click+drag=>select+copy | Right click=>paste – Kalmi Mar 27 '09 at 22:10
I know.. I don't have a problem using it, but others seem to... No, it does not select text by LINE, but rather by BLOCK, but it's easy enough to get used to, and use. – LarryF Mar 30 '09 at 19:11
feedback

My bets are on Powershell for the future if you are a Windows guy.

PowerShell will be installed by default on Windows Server 08 R2 (WS08R2) and Windows 7 according to MS.

I have used Powershell myself and found it to be very useful, and if you are familiar with .NET then its all the more easier.

Download a two page reference document here, this is all you will need to get started.

link|improve this answer
He is looking for a wrapper around cmd.exe... If you open up the PowerShell console you still get cmd.exe running PowerShell with a nice blue background. – Kalmi Mar 27 '09 at 1:57
feedback

There are plenty of shells around for Windows, bash under Cygwin is the one I use the most, and it's certainly free. I have to be honest here, cmd.exe has come a long way since the batch file processor of MSDOS. It's actually quite powerful, but still not a pimple on the rear end of bash :-).

You should try to write a command line shell, it will be an education for you. It's not that hard to do the basics if all you want is a program launcher.

But, if you want all the power of a real shell, including a full blown programming language, job control, piping, output redirection and (seriously) too many other things to list, we probably won't be hearing from you for a while. Except when you pop up your head to ask us esoteric questions about how shells should do this or that.

link|improve this answer
Thanks for response, I updated my question. As for what you describe as "the power of a real shell", I think I'll stick to python :) – hasen j Feb 11 '09 at 3:21
feedback

I mean the gui-interface part that displays the text,

Ah! you mean what we call a "pseudo-tty" or a "terminal emulator" in unix. In windows, I guess it is called a "console host". I do not use windows, but I heard that console2 is very good. Seems there are others:

and, of course, for real programmers, you have the shell mode of (x)emacs :-)

link|improve this answer
feedback

Erm... what about all the ports of Unix command shells to Windows?

link|improve this answer
feedback

Just go with cygwin and log on using PuTTY. So much better than the standard console. :)

link|improve this answer
feedback

Also, Python (or perl for that matter) can replace the shell entirely.

link|improve this answer
Really, do you want to be running your programs with 'system("excel.exe")'? I know perl/python are good for programming but they don't have job control or very good launch capabilities, do they? – paxdiablo Feb 11 '09 at 3:18
I think he's referring to admin tasks, and the like. – hasen j Feb 11 '09 at 3:52
@Pax: Python has all the job control and launch capabilities that the OS has, which is sometimes more than what the shell has. Look at the Python subprocess module, for example. – S.Lott Feb 11 '09 at 10:44
@Pax - look at IPython. – yangyang Aug 30 '09 at 16:31
feedback

You might want to try Take Command Console, formerly 4NT, formerly 4DOS.

Quick summary of points you might care about:

  • Command line editing with filename completion, history, and cut & paste
  • Integrate PERL, Ruby, REXX, Python, and any Active Scripting language
  • Fast - 20-200% faster output display than the standard Windows console
  • Integrated file explorer - examine directories, drag and drop files
  • Upwardly compatible with CMD.EXE with literally thousands of additions

Not free (except trial version) and not open source. I haven't tried it myself, but I was a 4DOS junkie back in the day, before Cygwin.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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