vote up 13 vote down star
12

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.
flag

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
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 3 more comments

13 Answers

vote up 18 vote down check

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|flag
I don't know of any way to search the history in the regular command prompt. – EBGreen Jan 13 '09 at 19:06
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  
@BQ: bash and other shells have much more powerful history-management facilities, ranging from just reading it to selecting commands in it by number or content... – Adriano Varoli Piazza Jan 13 '09 at 19:26
2  
F7 shows your command prompt history in a handly little window – Dynite Jan 13 '09 at 19:27
2  
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
vote up 1 vote down

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|flag
vote up 6 vote down

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|flag
vote up 0 vote down

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|flag
vote up 5 vote down

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

link|flag
vote up 3 vote down

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|flag
Pretty sure that doesn't give the ability to search history. – EBGreen Jan 13 '09 at 19:02
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
vote up 10 vote down

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|flag
vote up 6 vote down

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|flag
vote up 20 vote down

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|flag
1  
This is the only real answer to this question. – Max Howell Mar 14 at 12:15
vote up 0 vote down

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|flag
It is on by default and get-history has a default alias of h. – EBGreen Jan 13 '09 at 19:26
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
vote up 4 vote down

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|flag
vote up 5 vote down

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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