vote up 9 vote down star
5

Is there a better windows command line shell other than cmd which has better copy paste between Windows' windows and console windows?

flag

9 Answers

vote up 3 vote down check

Take Command does support Copy/Cut/Paste from the keyboard and the mouse. It's pretty handy if you do a lot of work from a command prompt. It also supports:

  • Command and folder history, with popup windows to select prior commands or folders.
  • Screen scroll back buffer
  • Enhanced batch commands
  • Built in FTP/HTTP file access
  • A toolbar with programmable buttons
link|flag
It is a paid tool ($99.95). It would be nice to make a note about this here. – agsamek Sep 13 at 14:45
vote up 9 vote down

Windows PowerShell is the obvious choice when it comes to "better windows command line shell other than cmd". Its clipboard handling isn't that much of an improvement - mark with the mouse, Enter to copy, or right mouse click to paste.

link|flag
vote up 4 vote down

This probably is not exactly what you want, but you can take a look at Console2

I have it configured so that shift+select auto copies and middle click pastes, really handy, internally it uses same old cmd.exe so you are not really getting a different shell.

By the way, I guess Ctrl+C = copy is not the best idea in a command line context because it usually means interrupt running process.

link|flag
For Linux shells, Ctrl-Char commands (like copy) are usually replaced with Ctrl-Shift-Char – Peter Sep 13 at 14:53
Console 2 was horribly buggy last time I looked. – Johannes Rössel Oct 23 at 17:18
vote up 4 vote down

Depending on what you're trying to do with the shell, rxvt in cygwin is good.

You'll get the nicety of auto copy on selection and middle click paste. The biggest downside is that some windows console apps don't play nice with cygwin.

link|flag
If you're going for cygwin, puttycyg is a great choice: code.google.com/p/puttycyg – glenn jackman Sep 13 at 15:28
vote up 2 vote down

Enable QuickEdit mode, under the Options tab of your shortcut to the command shell. Mark with the mouse, right-click to copy, right-click again to paste.

While you're there, enable a hotkey (like CTRL + ALT + C) for lightning fast access to the shell.

And no, you can't have CTRL + C for COPY, because CTRL + C means BREAK.

On a related note, the Microsoftee who changed the default setting of QuickEdit mode between Windows Server 2000 and 2003 is an idiot and I heap curses upon him each workday.

link|flag
vote up 1 vote down

Not sure what specifically you mean by better copy/paste but try Take Command.

Take Command supports Shift+Ins for paste and Shift+Del for cut, but apparently nothing for copy, will dig some more.

link|flag
You can configure Take Command to send one of the control keys to Take Command and the other to the running app. You could use Left-Ctrl-C to copy to the clipboard and Right-CtrL-C to send the Ctrl-C cancel signal to the application. – Chris Miller Sep 14 at 16:05
vote up 1 vote down

Have you thought through what behavior you want to replace the current Ctrl-C functionality?

link|flag
vote up 0 vote down

Not sure what specifically you mean by better copy/paste

I mean how copy paste works in other windows apps, (Ctrl+C = copy, Ctrl+V=paste, right-click paste pastes from the clipboard.. etc..)

link|flag
vote up 0 vote down

@Chirs
I think you need to clarify shell vs host(emulator). To me it sounds like you need another interface to your existing shell that better supports copy and paste, not another shell that supports more/different features.

I second Pat's suggestion of Console2, it is a very good application and OSS to boot.

link|flag

Your Answer

Get an OpenID
or

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