UPDATE (solution)

Months later someone turned me on to an awesome solution to this. If you install Git for Windows, it comes with this console app called Git Bash that does exactly what I descibed. I gather that it is derived from MinGW. It's easy and convenient and gives you all the Unix bash command line conveniences. Tab-completion works the way it does in bash (completes up to the point of ambiguity and doesn't try to guess beyond that forcing you to backspace out of an incorrect completion) and you can control-R to search command history, and history is preserved across restarts.


Can someone recommend a Windows XP program that provides a command line environment? I am an avid Cygwin user, but it doesn't solve my current problem. The problem with Cygwin that's tripping me up is that paths within the Cygwin environment are different from those under Windows, so some things I need to do are failing. My current project requires the Windows environment, not an alternate universe.

I've also considered PowerShell and Windows Services for Unix. I might try them later but for this project, I don't have time to learn a whole programming language that is PowerShell, and I suspect that WSU will have the same path problem as Cywin.

What I'm really looking for to solve my current problem is an app that gives me a Windows console but with some basic amenities added such as...

  • Tab-completion.
  • Being able to cut and paste text appearing in the window.
  • Search command history.
  • Being able to make the window wider than 80 chars.
link|improve this question

1  
you can do everything in your list of 4 items except search in a dos prompt (xp, vista - and possibly with 2000 with some settings/download) – Tim Jan 13 '09 at 19:19
Are you sure you can't solve your Cygwin / WSU path problems, even talking to the devs? – Adriano Varoli Piazza Jan 13 '09 at 19:28
For all that I think powershell is the way to go, if you know bash and you are really comfortable with it, resolving your path issue may be better for your individual case. – EBGreen Jan 13 '09 at 19:34
1  
Problem I have with powershell is that it is wicked slow. – James McMahon Jan 13 '09 at 20:23
ehh, it can be. Depends on what you are doing with it. – EBGreen Jan 13 '09 at 20:24
show 5 more comments
feedback

16 Answers

up vote 87 down vote accepted

There is also Console: http://sourceforge.net/projects/console/ it is a replacement for the Windows console window and much more flexible (tabs, transparency, presets, etc) For a better tab completion you need a different command interpreter like 4nt / take command.

link|improve this answer
4  
This is the only real answer to this question. – Max Howell Mar 14 '09 at 12:15
2  
Too bad it doesn't support easy window resizing. – Milen A. Radev Jan 15 '10 at 12:00
1  
What do you mean Console2 doesn't support easy window resizing? I've been using it ever since I found out about it from this thread 6 months ago -- never had a problem resizing any windows. – Noah Sussman Feb 22 '10 at 22:08
1  
I just downloaded it and it doesn't even allow me to maximize it. Why? – devoured elysium Apr 14 '11 at 0:38
1  
I downloaded Console-2.00b148-Beta_32bit.zip, and it was a big fail. Couldn't easily figure out how to select text (why not just left-click?) and when I quit was treated to a cascade of Visual C++ Runtime Error! dialog boxes that forced me to hard-reboot. YMMV. – noahz Jan 19 at 15:57
show 2 more comments
feedback

The windows console provides the above features. Right click the title bar and choose properties. Select Quick Edit Mode and Insert Mode and command history on the options tab. Set your screen buffer and screen size on the layout tab. When you OK out modify shortcut that started that window and OK

K

link|improve this answer
1  
After changing the options and clicking OK. A dialog box will appear asking if you want the changes to apply to only this window, or to apply the changes to future windows with the same title. Selecting the latter will ensure you have the features next time you open the command prompt. – Dillie-O Jan 13 '09 at 19:12
1  
One other note. While it isn't exactly "searching" the history, you can press the up arrow and get all previous commands you have entered. However, this only applies to the current command prompt window and the commands entered since it was opened. – Dillie-O Jan 13 '09 at 19:14
1  
@EBGreen, I don't know of any console for any platform that allows "searching" the command history. Windows cmd.exe gives you command history revisiting (probably what the OP was after) with the up/down keys as many unix shells do (where the history's sometimes stored in a searchable text file). – BQ. Jan 13 '09 at 19:15
11  
F7 shows your command prompt history in a handly little window – Dynite Jan 13 '09 at 19:27
8  
F8 will search the command history for the latest command with a matching prefix to what you've already typed. – Greg Hewgill Jan 13 '09 at 21:02
show 11 more comments
feedback

Since spring this year (2010) there is also MinTTY included in standard Cygwin. Try this, it really convinced me (long term cmd and Console2 user). You don't need a running X server for it.

link|improve this answer
feedback

We use an older product called 4NT, made by a company called JPSoft. While it's an older product, I believe it does everything you are looking for (except perhaps being able to make the window wider than 80 chars), plus a bit more.

JPSoft has replaced 4NT with a product that is now offered free-of-charge: Take Command Console LE. Despite being free, it does everything we need it to do. I would highly recommend it!

link|improve this answer
feedback

Powershell is a new language, but it meets all of your requirements and the vast majority of the commands that you are familiar with form the regular command prompt work just fine in a powershell prompt as well.

Since working with the history is so handy, I thought that I would provide a demonstration scenario here. Lets say that you have a bunch of batch files that you run in a specific order as part of your build (don't know why you haven't wrapped them up in another bat yet, but that's your problem :P ). You did a build this morning and it is now 8 hours and a butt load of commands later and you want to run them again. You know that they are in a folder called C:\Dev\Build and that they are the only bats that you have run out of that folder this session. So, here is the commandline that would run them again in exactly the same order that you ran them the first time:

ghy | ?{$_.CommandLine -like "C:\Dev\Build\*.bat"} | %{ihy $_.ID}
link|improve this answer
feedback

I use Console2 with cmd.exe and/or a cygwin prompt. It's the bomb.

EDIT: started using it with TCC/LE (the modern-day incarnation of 4dos and 4nt), much better than cmd.exe and freeware.

link|improve this answer
1  
Ah! Just love when I'm SO'ed into awe. – Frankie Nov 27 '10 at 4:19
Ive been using TCCLE and 4nt before it and 4dos before that, but recently tried the full Take Command for the tabs. Very nice but I'm not shelling out $99! So tried console2 with TCCLE, but it doesnt work! Causes C2 to start up with tiny non resizable window. If I start tcc.exe from a regular command line inside c2 (instead of at startup) then it creates a mirror window outside: everything i type/see happens inside c2 and in a standalone tccle window outside. Ideas? (Using W7 64bit) – Rhubarb Apr 11 at 16:23
@Rhubarb, I had similar problems but I don't remember what I did to work around them, it's been a while :-( – orip Apr 11 at 17:52
feedback

MinGW is a smaller version (fork) of cygwin. The MSYS console is a rxvt shell running bash that has access to the Windows path.

link|improve this answer
feedback

There are two categories here - one is done by the console window, the other is done by shell that is running in the window

  • Being able to cut and paste text appearing in the window.
  • Being able to make the window wider than 80 chars.

This is done by the window, and other answers explain how to set up the normal Windows console to do it. Cur and Paste sort of work, except the console is not aware of line continuation, so lines that are wrapped come out as two lines. To get a better window, try something form Putty. (Edit: color me wrong - Putty still does not supply console window. Oh well, plenty other options in the answers here. And, in case it was not mentioned, there is this. Can't vouch for it personally, but it's out there.).

  • Tab-completion.
  • Search command history.

This is done by shell, cmd.exe. Tab completion works (as explained in other questions). Search command history is not there. Nor is command history preserved between sessions. YOu can get a better shell, such as bash.

Another edit: I completely forgot about the excellent emacs shell mode. In Windows, that runs cmd.exe and provides great console window. It even enhances the tab completion for you! You can learn about emacs for Windows here.

link|improve this answer
feedback

I'm pretty sure that Win XP has tab completion turned on by default, but Microsoft explains how to fiddle with that feature.

link|improve this answer
feedback

You can do most of this with the Windows console.

  1. Open a console window
  2. Click on the Icon in the upper left
  3. Click Defaults
  4. Under Options check QuickEdit Mode and Insert Mode
  5. Under Font, select a size and font you like
  6. Under Layout, make the window bigger
  7. Change the colors if you like.

This will give you everything you asked for.

link|improve this answer
Pretty sure that doesn't give the ability to search history. – EBGreen Jan 13 '09 at 19:02
1  
To search history, type some characters and then F8. – Greg Hewgill Jan 13 '09 at 21:03
Well that does work...sort of. It only works if you give it the beginning of the command. There is no wildcard support. On XP at least, it doesn't give you a list of results, it just cycles through the matches. – EBGreen Jan 13 '09 at 21:18
feedback

I love powershell, and if you've got any experience with .Net, it's not so bad. I think that you will have to learn "a language" with any shell environment you choose.

link|improve this answer
feedback

Powershell seems to have taken the "let's give'em the feature, but make it as complicated as we can" route, re:history.

You have a history list, but it's not on by default IIRC, it's complicated to use (get-history followed by invoke-history ? WTF?) They've promised to get this better in future releases, but they always do that.

link|improve this answer
It is on by default and get-history has a default alias of h. – EBGreen Jan 13 '09 at 19:26
1  
Oh, and Invoke-History has a default alias of ihy. – EBGreen Jan 13 '09 at 19:27
Nice. And F7, I read on another answer, shows a window with the current session's history. – Adriano Varoli Piazza Jan 13 '09 at 19:32
That works for powershell or cmd. – EBGreen Jan 13 '09 at 19:33
And F8 does a history search for commands starting with what you've already typed. – Greg Hewgill Jan 13 '09 at 21:03
show 4 more comments
feedback

How about a good text editor like TextPad? It will give you many of the features you want and you can use whatever shell language you want. Textpad has some pretty nice command line integration features and compiler support.

link|improve this answer
feedback

Try rxvt. It comes with Cygwin and it is awesome.

link|improve this answer
feedback

Just installed emacsW32 (http://ourcomments.org/Emacs/EmacsW32.html). Besides some serious editing I use the integrated shell to get some work done on DOS.

cu Roman

link|improve this answer
feedback

Doing an insert in the Windows console is not enabled by enabling Quick Insert in the windows console. At least, I can't figure out what the key combination is to do an insert; it certainly isn't the insert key, and it isn't ctrl-v or alt-E-p.

There IS an undocumented key combination that will do insert in the windows console. I only know because about once a year, I accidentally bang my keyboard in a way that inserts the contents of the buffer into my Cygwin console window (which is just the MS-DOS console with bash running in it). I've never been able to recreate that and figure out what the key combination was.

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.