Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

better command for Windows? [closed]

While I grew up using MSWindows, I transitioned to my much-loved Mac years ago. I don't want to start a flame war here on operating systems. I do, however, want a terminal a litle closer to what I'm used to.

I'm not asking for full POSIX support - I don't have the patience to install Cygwin - but I miss tabbed terminals, being able to easily cut and paste, and my good friends ls, mkdir, rm, et al. (For these last ones, I could always put .bat files on my path, but that's going to get old fast.)

Anybody have a terminal application for MSWindows XP ?

like image 333
James A. Rosen Avatar asked Aug 13 '08 17:08

James A. Rosen


People also ask

How do I open a closed window in cmd?

The quickest way to open a Command Prompt window is through the Power User Menu, which you can access by right-clicking the Windows icon in the bottom-left corner of your screen, or with the keyboard shortcut Windows Key + X. It'll appear in the menu twice: Command Prompt and Command Prompt (Admin).

What is the command for close?

When multiple open windows, files, or tabs are open, press Ctrl + F4 or Ctrl + W in Windows ( Command + W on a Mac) to close them one at a time without closing the program. In Microsoft Windows, programs that support Ctrl + W can also use the shortcut Ctrl + Shift + W to close all open tabs.

What commands can close the command window?

You can also use the shortcut key Alt + F4 to close a Command Prompt window.

How do I make my cmd always green?

To set the default Command Prompt window color, select the upper-left corner of the Command Prompt window, select Defaults, select the Colors tab, and then select the colors that you want to use for the Screen Text and Screen Background.


2 Answers

I'm using powershell, its awesome to keep you from going crazy, and it has rm and mkdir and ls. Tabbed terminals is still not in powershell, and copy paste is similar to cmd, but its way better than cmd.exe.

like image 57
DevelopingChris Avatar answered Oct 18 '22 21:10

DevelopingChris


Some more options:

MSYS: a Minimal SYStem providing a POSIX compatible Bourne shell environment, with a small collection of UNIX command line tools. Primarily developed as a means to execute the configure scripts and Makefiles used to build Open Source software, but also useful as a general purpose command line interface to replace Windows cmd.exe.

GNU utilities for Win32: ports of common GNU utilities to native Win32. In this context, native means the executables do only depend on the Microsoft C-runtime (msvcrt.dll) and not an emulation layer like that provided by Cygwin tools.

like image 24
McDowell Avatar answered Oct 18 '22 20:10

McDowell